:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #161616;
  --text: #FAFAFA;
  --muted: #A1A1AA;
  --accent: #3B82F6;
  --accent-dim: #2563EB;
  --hairline: rgba(250, 250, 250, 0.10);
  --hairline-strong: rgba(250, 250, 250, 0.16);
  --btn-hover-text: #FAFAFA;
  --max: 1120px;
  --chip-bg: transparent;
  --header-h: 56px;
  --radius: 8px;
  --radius-sm: 6px;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
.display {
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  margin: 0 0 0.5em;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  margin: 0 0 0.7em;
  letter-spacing: -0.02em;
  max-width: 18em;
}

h3 {
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 12px;
}

p {
  margin: 0 0 1.05em;
  max-width: 40rem;
}

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

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 14px;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

.kicker::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  margin-top: 10px;
  background: var(--accent);
}

.zero {
  color: var(--accent);
}

.wrap {
  width: min(var(--max), calc(100% - clamp(32px, 6vw, 80px)));
  margin: 0 auto;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 16px;
  overflow: visible;
  clip: auto;
  z-index: 100;
  background: var(--bg);
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
}




header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 22px;
  height: 22px;
}

.brand span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand-ai {
  color: var(--accent);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle:hover {
  border-color: var(--muted);
  background: var(--surface);
}

.nav-toggle-bars {
  display: block;
  position: relative;
  width: 14px;
  height: 1px;
  background: var(--text);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--text);
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.site-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--text);
  background: rgba(250, 250, 250, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  color: #fff;
}

section {
  padding: clamp(72px, 9vw, 112px) 0;
  border-top: 1px solid var(--hairline);
}

section[id],
#top,
#main {
  scroll-margin-top: 64px;
}

/* Hero */

.hero {
  border-top: 0;
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(64px, 10vw, 112px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 70% at 72% 42%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 72% 42%, #000 10%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 400px);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: none;
}

.deck {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 36em;
  margin-bottom: 1.15em;
}

.hero-copy > p:not(.kicker):not(.deck):not(.promise) {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 22px;
}

.hero-actions .btn {
  min-height: 40px;
  padding: 0 16px;
}

.quiet {
  color: var(--muted);
  font-size: 0.92rem;
}

.promise {
  padding-top: 1.15rem;
  border-top: 1px solid var(--hairline);
  max-width: 34rem;
}

/* Hero evidence chain — product visual */

.hero-visual {
  min-width: 0;
}

.chain-card {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.chain-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
}

.chain-card-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.chain-card-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-chain {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hero-chain li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
  min-height: 52px;
  transition: background 0.15s ease;
}

.hero-chain li:last-child {
  border-bottom: 0;
}

.hero-chain li:hover {
  background: rgba(59, 130, 246, 0.04);
}

.hero-chain .num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.hero-chain .label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

.hero-chain .state {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.chain-card-foot {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--muted);
  max-width: none;
  background: var(--surface-2);
}

/* Architecture */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(36px, 5vw, 56px);
}

.split article {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  background: var(--surface);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.split article:hover {
  border-color: var(--hairline-strong);
  background: var(--surface-2);
}

.split article .kicker {
  color: var(--accent);
  margin-bottom: 16px;
}

.split article .kicker::after {
  background: var(--accent);
  opacity: 0.8;
}

.split article p {
  max-width: none;
}

/* Governance spec strip */

.chain.spec-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: clamp(32px, 5vw, 48px) 0 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.chain.spec-strip li {
  position: relative;
  padding: 16px 16px 18px;
  border-right: 1px solid var(--hairline);
  min-height: 84px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s ease;
}

.chain.spec-strip li:last-child {
  border-right: 0;
}

.chain.spec-strip li:hover {
  background: rgba(59, 130, 246, 0.04);
}

.chain.spec-strip .num {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.chain.spec-strip .label {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.chain.spec-strip.inview li {
  border-right-color: var(--hairline);
}

.caption {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
  max-width: none;
}

/* Deploy */

.deploy-panel {
  margin-top: clamp(32px, 5vw, 48px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px 24px 24px;
}

.spectrum {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.spectrum-line {
  flex: 1;
  height: 2px;
  min-width: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(59, 130, 246, 0.2));
}

.deploy-ends {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  align-items: start;
  margin-top: 6px;
}

.deploy-local {
  text-align: right;
}

.deploy-local .chips {
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .deploy-ends {
    grid-template-columns: 1fr;
  }
  .deploy-local {
    text-align: left;
  }
  .deploy-local .chips {
    justify-content: flex-start;
  }
}

.deploy-caption {
  margin: 22px 0 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid var(--hairline-strong);
  padding: 6px 12px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  border-radius: 999px;
  background: var(--bg);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.chips li:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

/* SAFR */

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: clamp(32px, 5vw, 48px) 0;
}

.pillars li {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 18px 22px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  min-height: 112px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.pillars li:hover {
  border-color: var(--hairline-strong);
  background: var(--surface-2);
}

.pillars .num {
  display: block;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.closing {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.018em;
  max-width: 22em;
  margin-top: 0.6rem;
  font-weight: 500;
}

.note {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 54em;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  margin-top: 40px;
}

/* Briefing */

.briefing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

#briefing-form {
  margin-top: 0;
  max-width: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  border-radius: 0;
  color: var(--text);
  min-height: 44px;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.15s ease;
}

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

.field input:hover,
.field textarea:hover {
  border-bottom-color: var(--muted);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.55;
}

#briefing-status {
  min-height: 1.6em;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--accent);
}

/* Footer */

footer.site {
  border-top: 1px solid var(--hairline);
  padding: clamp(40px, 7vw, 72px) 0 clamp(32px, 5vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px 64px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.footer-brand {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-brand .name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-brand .name img {
  width: 20px;
  height: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease;
}

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

.footnote {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 72em;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.copyright {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 880px) {
  .hero-grid,
  .briefing-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
  }

  .chain.spec-strip {
    grid-template-columns: 1fr;
  }

  .chain.spec-strip li {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
  }

  .chain.spec-strip li:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav ul a {
    display: block;
    padding: 12px clamp(20px, 4vw, 48px);
    min-height: 44px;
  }

  .site-nav .btn {
    margin: 10px clamp(20px, 4vw, 48px) 0;
    align-self: flex-start;
  }


}

@media (max-width: 520px) {
  .pillars {
    grid-template-columns: 1fr;
  }

  .spectrum {
    flex-wrap: wrap;
  }

  .spectrum-line {
    flex-basis: 100%;
    order: 1;
    min-width: 0;
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .hero-copy {
    animation: fade-up 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-visual {
    animation: fade-up 520ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
  }

  .hero-chain li {
    opacity: 0.55;
    transition: opacity 0.55s ease, background 0.15s ease;
  }

  .hero-chain.inview li {
    opacity: 1;
  }

  .hero-chain.inview li:nth-child(1) { transition-delay: 0.04s; }
  .hero-chain.inview li:nth-child(2) { transition-delay: 0.1s; }
  .hero-chain.inview li:nth-child(3) { transition-delay: 0.16s; }
  .hero-chain.inview li:nth-child(4) { transition-delay: 0.22s; }
  .hero-chain.inview li:nth-child(5) { transition-delay: 0.28s; }

  .chain.spec-strip li {
    opacity: 0.6;
    transition: opacity 0.5s ease, background 0.15s ease;
  }

  .chain.spec-strip.inview li {
    opacity: 1;
  }

  .chain.spec-strip.inview li:nth-child(1) { transition-delay: 0.02s; }
  .chain.spec-strip.inview li:nth-child(2) { transition-delay: 0.07s; }
  .chain.spec-strip.inview li:nth-child(3) { transition-delay: 0.12s; }
  .chain.spec-strip.inview li:nth-child(4) { transition-delay: 0.17s; }
  .chain.spec-strip.inview li:nth-child(5) { transition-delay: 0.22s; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

.company-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px 64px;
  align-items: start;
}

.office {
  font-style: normal;
  border: 1px solid var(--hairline);
  background: var(--surface);
  padding: 28px 28px 32px;
  margin: 0;
}

.office .kicker {
  margin-bottom: 18px;
}

.office p {
  margin: 0 0 4px;
  max-width: none;
  color: var(--muted);
}

.office-name {
  color: var(--text) !important;
  font-weight: 500;
  margin-bottom: 12px !important;
}

@media (max-width: 800px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}

.field.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
