:root {
  color-scheme: dark;

  --bg: #101318;
  --surface: #171b21;
  --surface-2: #1d222a;
  --text: #eaedf1;
  --muted: #a3aab4;
  --faint: #757c86;
  --rule: #272d36;
  --accent: #6cc0a5;
  --accent-2: #8ad3bb;
  --accent-soft: #16241f;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
  --maxw: 44rem;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 clamp(16px, 1.6vw, 17.5px)/1.65 ui-sans-serif, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.35rem;
}

img, svg { max-width: 100%; }

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

.site-head .wrap {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -.025em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.wm-text { white-space: nowrap; }
.wordmark b { color: var(--accent); font-weight: inherit; }

.wordmark i {
  color: var(--accent);
  font-size: 1.15rem;
  flex: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .92rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: .7rem .6rem;
  border-radius: 6px;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); background: var(--surface-2); }

.site-nav a[aria-current="page"] { color: var(--text); }

.hero { padding-top: clamp(2.5rem, 7vw, 4.5rem); }

.status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: .35rem .85rem .35rem .7rem;
  font-size: .82rem;
  font-weight: 550;
  margin-bottom: 1.4rem;
}

.status .dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.lede {
  font-size: clamp(1.55rem, 5.2vw, 2.3rem);
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -.03em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.sub { font-size: 1.05em; margin: 0 0 1.1rem; }

p { margin: 0 0 1.1rem; }
.muted { color: var(--muted); }

.figure {
  margin: 1.6rem 0 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: var(--shadow);
  padding: clamp(1.9rem, 6vw, 2.7rem) 1.4rem;
  display: grid;
  place-items: center;
}

.figure i {
  color: var(--accent);
  background: var(--accent-soft);
  font-size: clamp(1.9rem, 6vw, 2.5rem);
  width: clamp(4.4rem, 13vw, 5.6rem);
  height: clamp(4.4rem, 13vw, 5.6rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero .figure { margin-top: 2.25rem; }

.photo {
  margin: 2.25rem 0 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.photo img { display: block; width: 100%; height: auto; }

.rigs {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.rig-cell {
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--surface);
  padding: 1.1rem .6rem .85rem;
  text-align: center;
}

.rig-cell i {
  color: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
}

.rig-cell figcaption {
  margin-top: .7rem;
  font-size: .73rem;
  line-height: 1.3;
  letter-spacing: .03em;
  color: var(--faint);
}

@media (max-width: 34rem) {
  .rigs { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
}

main { padding-bottom: 4rem; }

section { margin-top: clamp(2.5rem, 6vw, 3.5rem); }

h2 {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 .95rem;
}

h2 i {
  color: var(--faint);
  font-size: .92rem;
  width: 1.05rem;
  text-align: center;
  flex: none;
}

a { color: var(--accent); text-underline-offset: .15em; }

.card {
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}

.principles {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: p;
  display: grid;
  gap: 1.25rem;
}

.principles li {
  counter-increment: p;
  position: relative;
  padding-left: 2.6rem;
}

.principles li::before {
  content: counter(p);
  position: absolute;
  left: 0;
  top: .1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 650;
}

.principles strong { display: block; margin-bottom: .15rem; }

.principles li { color: var(--muted); }
.principles strong { color: var(--text); }

.contact-card p { margin-bottom: .35rem; }

.mail {
  display: inline-block;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.01em;
  word-break: break-word;
  padding: .2rem 0;
}

.form { display: grid; gap: 1rem; margin: 1.4rem 0 0; }

.field { display: grid; gap: .35rem; }

.field label {
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--faint);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 9px;
  padding: .65rem .75rem;
  width: 100%;
  max-width: 100%;
}

.field textarea { min-height: 7rem; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

.btn {
  justify-self: start;
  font: inherit;
  font-weight: 650;
  color: #08130f;
  background: var(--accent);
  border: 0;
  border-radius: 9px;
  padding: .72rem 1.4rem;
  cursor: pointer;
}

.btn:hover { background: var(--accent-2); }

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

@media (max-width: 32rem) {
  .field-pair { grid-template-columns: 1fr; gap: 1rem; }
}

.faq {
  margin: 2.1rem 0 0;
  border-top: 1px solid var(--rule);
}

.faq-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.faq-item h2 {
  display: block;
  font-size: 1.03rem;
  font-weight: 650;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--text);
  margin: 0 0 .4rem;
}

.faq-item p { margin: 0; color: var(--muted); }

.legal { font-size: .97rem; }

.legal h2 {
  display: block;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--text);
  margin: 2.1rem 0 .55rem;
}

.legal ul { margin: 0 0 1.1rem; padding-left: 1.15rem; }
.legal li { margin-bottom: .4rem; }

.updated { color: var(--faint); font-size: .85rem; margin-bottom: 2rem; }

.site-foot {
  border-top: 1px solid var(--rule);
  padding: 2rem 0 3rem;
  font-size: .87rem;
  color: var(--faint);
}

.site-foot p { margin: 0 0 .45rem; }
.site-foot a { color: var(--muted); text-decoration: none; }
.site-foot a:hover { color: var(--text); text-decoration: underline; }

.foot-links { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .35rem 1rem; }

@media (max-width: 30rem) {
  .site-nav a { padding: .7rem .4rem; font-size: .88rem; }
  .wordmark { font-size: 1.15rem; }
  .card { padding: 1.15rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
