@font-face {
 font-family: "Roboto Mono";
 font-style: normal;
 font-weight: 400 900;
 font-display: swap;
 src: url("fonts/roboto-mono-latin.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;
}

:root {
 color-scheme: light dark;
 --bg: #ffffff;
 --panel: #f5f5f5;
 --panel-2: #ebebeb;
 --text: #080808;
 --muted: #5e5e5e;
 --line: #cfcfcf;
 --strong: #000000;
 --invert: #ffffff;
 --shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

[data-theme="dark"] {
 --bg: #050505;
 --panel: #121212;
 --panel-2: #1e1e1e;
 --text: #f7f7f7;
 --muted: #a8a8a8;
 --line: #343434;
 --strong: #ffffff;
 --invert: #000000;
 --shadow: 0 18px 45px rgba(255, 255, 255, .04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 margin: 0;
 background: var(--bg);
 color: var(--text);
 font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
 line-height: 1.65;
 letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: .22em; }
.button:hover { text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
small { color: var(--muted); }

.skip-link {
 position: absolute;
 left: 1rem;
 top: -5rem;
 background: var(--strong);
 color: var(--invert);
 padding: .6rem .8rem;
 z-index: 20;
}
.skip-link:focus { top: 1rem; }

.site-header {
 position: sticky;
 top: 0;
 z-index: 10;
 background: var(--bg);
 border-bottom: 1px solid var(--line);
}

.nav {
 max-width: 1180px;
 margin: 0 auto;
 padding: .8rem 1rem;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
}

.brand {
 font-size: clamp(1.2rem, 2vw, 1.7rem);
 font-weight: 900;
 letter-spacing: 0;
 text-transform: uppercase;
}

.nav-links {
 display: flex;
 align-items: center;
 gap: .35rem;
 flex-wrap: wrap;
 justify-content: flex-end;
}

.nav-links a, .theme-toggle, .menu-toggle, .nav-group > button {
 border: 1px solid var(--line);
 background: var(--bg);
 color: var(--text);
 min-height: 2.35rem;
 padding: .55rem .7rem;
 font: inherit;
 font-size: .78rem;
 font-weight: 700;
}

.theme-toggle, .menu-toggle, .nav-group > button { cursor: pointer; }
.theme-toggle {
 border-color: var(--strong);
 background: var(--strong);
 color: var(--invert);
 font-weight: 900;
}
.menu-toggle { display: none; }

.nav-group {
 position: relative;
}

.nav-group > button {
 text-transform: none;
}

.dropdown {
 position: absolute;
 top: calc(100% + .35rem);
 left: 0;
 min-width: 15rem;
 display: none;
 padding: .4rem;
 background: var(--bg);
 border: 1px solid var(--line);
 box-shadow: var(--shadow);
 z-index: 30;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
 display: grid;
 gap: .35rem;
}

.dropdown a {
 display: block;
 width: 100%;
}

.hero, .section {
 max-width: 1180px;
 margin: 0 auto;
 padding: clamp(2.5rem, 5vw, 4.75rem) 1rem;
}

.hero {
 min-height: calc(100vh - 72px);
 display: grid;
 align-content: center;
 border-bottom: 1px solid var(--line);
}

.eyebrow {
 display: inline-flex;
 width: fit-content;
 border: 1px solid var(--line);
 padding: .35rem .55rem;
 margin-bottom: 1.2rem;
 color: var(--muted);
 font-size: .78rem;
 font-weight: 700;
 text-transform: uppercase;
}

h1, h2, h3 {
 color: var(--strong);
 line-height: 1.08;
 margin: 0;
 letter-spacing: 0;
}

h1 {
 max-width: 1040px;
 font-size: clamp(2.35rem, 7vw, 6.9rem);
 text-transform: uppercase;
}

h2 {
 font-size: clamp(1.7rem, 4vw, 3.7rem);
 text-transform: uppercase;
}

h3 {
 font-size: clamp(1.05rem, 1.6vw, 1.45rem);
 text-transform: uppercase;
}

h2 + .form, h2 + .table-wrap, h2 + .grid {
 margin-top: 1.5rem;
}

.lead {
 max-width: 820px;
 margin-top: 1.4rem;
 font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-actions, .button-row {
 display: flex;
 gap: .7rem;
 flex-wrap: wrap;
 margin-top: 1.5rem;
}

.button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 2.8rem;
 border: 1px solid var(--strong);
 padding: .75rem 1rem;
 font-family: inherit;
 font-size: .9rem;
 font-weight: 800;
 background: var(--strong);
 color: var(--invert);
}

.button.secondary {
 background: var(--bg);
 color: var(--strong);
}

.table-button {
 min-height: 2.25rem;
 padding: .45rem .75rem;
 font-size: .78rem;
 text-decoration: none;
 white-space: nowrap;
}

.grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1rem;
 margin-top: 2rem;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
 border: 1px solid var(--line);
 background: var(--panel);
 padding: 1.25rem;
 border-radius: 6px;
 box-shadow: var(--shadow);
}

.card p:last-child { margin-bottom: 0; }
.metric { font-size: 2rem; font-weight: 900; color: var(--strong); }

.split {
 display: grid;
 grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
 gap: clamp(1.2rem, 3vw, 3rem);
 align-items: start;
}

.band {
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 background: var(--panel);
}

.table-wrap {
 overflow-x: auto;
 margin-top: 1.5rem;
 border: 1px solid var(--line);
 border-radius: 6px;
}

table {
 width: 100%;
 border-collapse: collapse;
 min-width: 720px;
 background: var(--bg);
}

th, td {
 border-bottom: 1px solid var(--line);
 padding: .95rem;
 text-align: left;
 vertical-align: top;
}

th {
 background: var(--panel-2);
 color: var(--strong);
 text-transform: uppercase;
 font-size: .78rem;
}

tr:last-child td { border-bottom: 0; }

.pricing-note {
 max-width: 980px;
 margin: .8rem 0 0;
 line-height: 1.45;
}

.pricing-note small {
 font-size: .68rem;
}

.form {
 display: grid;
 gap: .85rem;
 margin-top: 1.25rem;
}

label { font-size: .78rem; font-weight: 800; text-transform: uppercase; color: var(--strong); }
input, select, textarea {
 width: 100%;
 border: 1px solid var(--line);
 background: var(--bg);
 color: var(--text);
 padding: .85rem;
 font: inherit;
 border-radius: 4px;
}
textarea { min-height: 9rem; resize: vertical; }

.site-footer {
 border-top: 1px solid var(--line);
 padding: 2rem 1rem;
}

.footer-inner {
 max-width: 1180px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1.2fr 2fr;
 gap: 1rem;
}

.footer-links {
 display: flex;
 gap: .75rem;
 flex-wrap: wrap;
 justify-content: flex-end;
 font-size: .82rem;
 font-weight: 700;
}

.footer-inner p, .footer-inner small {
 color: var(--strong);
 font-size: .82rem;
 font-weight: 400;
 line-height: 1.5;
}

.copyright {
 grid-column: 1 / -1;
 margin: 2rem 0 0;
 color: var(--strong);
 font-size: .82rem;
 font-weight: 400;
 text-align: center;
}

.contact-lines {
 font-size: clamp(.85rem, 1.2vw, 1rem);
 line-height: 1.55;
}

.center-lines {
 text-align: center;
 max-width: 760px;
 margin: 2rem auto 0;
}

.service-detail {
 margin-top: 2rem;
}

.article {
 max-width: 980px;
 margin-left: auto;
 margin-right: auto;
}

.section.article {
 padding-top: clamp(2rem, 3vw, 3rem);
 padding-bottom: clamp(2rem, 3vw, 3rem);
}

.section.article + .section.article {
 padding-top: clamp(1.25rem, 2.4vw, 2.25rem);
}

.service-stack .grid {
 margin-top: 0;
}

.service-stack > .article {
 margin-top: clamp(2.25rem, 3.5vw, 3.25rem);
}

.article h2 {
 font-size: clamp(1.35rem, 2.6vw, 2.2rem);
 margin-top: 0;
}

.article h2:not(:first-child) {
 margin-top: 2rem;
}

.article h3 {
 margin-top: 1.4rem;
}

.article-meta {
 color: var(--muted);
 font-weight: 700;
 margin-top: 1rem;
}

.article ul, .article ol {
 color: var(--muted);
 padding-left: 1.25rem;
}

.article li {
 margin: .45rem 0;
}

.career-layout {
 display: grid;
 grid-template-columns: 1fr;
 gap: clamp(1.4rem, 3vw, 3rem);
}

.career-layout .table-wrap {
 overflow-x: visible;
}

.career-layout table {
 min-width: 0;
 table-layout: fixed;
}

.positions-table .role-col { width: 25%; }
.positions-table .focus-col { width: 49%; }
.positions-table .plan-col { width: 13%; }
.positions-table .apply-col { width: 13%; }
.positions-table th:nth-child(3),
.positions-table td:nth-child(3),
.positions-table th:nth-child(4),
.positions-table td:nth-child(4) {
 text-align: center;
}

.notice {
 border: 1px solid var(--line);
 background: var(--panel);
 padding: 1rem;
 border-radius: 6px;
 margin-top: 1rem;
}

.faq {
 display: grid;
 gap: .75rem;
 margin-top: 1.5rem;
}

.faq details {
 border: 1px solid var(--line);
 background: var(--bg);
 border-radius: 6px;
 padding: 1rem;
}

.faq summary {
 cursor: pointer;
 color: var(--strong);
 font-weight: 800;
 text-transform: uppercase;
}

.faq p {
 margin-top: .8rem;
 margin-bottom: 0;
}

.check { font-weight: 900; color: var(--strong); }
.cross { color: var(--muted); }

.list {
 padding-left: 1.1rem;
 color: var(--muted);
}
.list li { margin: .45rem 0; }

.legal article {
 border-bottom: 1px solid var(--line);
 padding: 1.3rem 0;
}
.legal article:last-child { border-bottom: 0; }

@media (max-width: 900px) {
 .menu-toggle { display: inline-flex; }
 .nav { align-items: flex-start; }
 .nav-links {
 display: none;
 position: absolute;
 left: 1rem;
 right: 1rem;
 top: 4.2rem;
 padding: .8rem;
 background: var(--bg);
 border: 1px solid var(--line);
 box-shadow: var(--shadow);
 justify-content: flex-start;
 align-items: stretch;
 }
 .nav-links.open { display: flex; }
 .nav-group { width: 100%; }
 .nav-group > button { width: 100%; text-align: left; }
 .dropdown {
 position: static;
 min-width: 0;
 box-shadow: none;
 margin-top: .35rem;
 }
 .grid, .grid.two, .grid.four, .split, .footer-inner {
 grid-template-columns: 1fr;
 }
 .footer-links { justify-content: flex-start; }
 .hero { min-height: auto; }
}

@media (max-width: 520px) {
 .hero, .section { padding-left: .8rem; padding-right: .8rem; }
 .nav-links a, .theme-toggle, .menu-toggle { font-size: .72rem; padding: .5rem; }
 th, td { padding: .75rem; }
 .career-layout table, .career-layout thead, .career-layout tbody, .career-layout tr, .career-layout th, .career-layout td {
 display: block;
 width: 100%;
 }
 .career-layout th { border-bottom: 0; }
 .career-layout td { min-height: 0; }
}
