* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: #06111f;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}
.top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.top div { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.top a:hover { color: #fff; }
.top .is-active {
  color: #f0d37b;
}
.hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.eyebrow {
  color: #f0d37b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1 {
  max-width: 840px;
  margin: 14px 0 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}
.hero p:last-child {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.stack {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}
.card {
  display: block;
  min-height: 132px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  padding: 24px;
  border-radius: 8px;
}
.card:hover { border-color: rgba(240,211,123,0.55); background: rgba(255,255,255,0.07); }
.card h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}
.card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.64);
  line-height: 1.6;
}
.inquiry {
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  padding: 24px;
  border-radius: 8px;
}
.inquiry h2 { margin: 0 0 16px; }
.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.form input,
.form select,
.form button {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.24);
  color: #fff;
  padding: 0 12px;
  font: inherit;
}
.form button {
  cursor: pointer;
  border-color: rgba(240,211,123,0.55);
  background: #0e7c86;
  font-weight: 800;
}
.status { color: #f0d37b; }
.helm-language-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(5,11,20,0.88);
  box-shadow: 0 16px 50px rgba(0,0,0,0.32);
}
.helm-language-toggle button {
  min-height: 34px;
  border: 0;
  color: rgba(255,255,255,0.72);
  background: transparent;
  padding: 0 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.helm-language-toggle button[aria-pressed="true"] {
  color: #06111f;
  background: #f0d37b;
}
.code {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.82);
  padding: 16px;
  line-height: 1.6;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.table th,
.table td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}
.table th {
  color: #f0d37b;
  background: rgba(255,255,255,0.04);
}
.history {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.history article {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.18);
  padding: 14px;
}
.history strong,
.history span { display: block; }
.history span {
  margin-top: 4px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.history p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.68);
}
@media (max-width: 720px) {
  .top { align-items: flex-start; flex-direction: column; }
  .top div { justify-content: flex-start; }
  .hero { padding-top: 52px; }
}
