*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #060a12;
  --panel: rgba(10, 16, 28, 0.94);
  --line: rgba(56, 189, 248, 0.16);
  --text: rgba(241, 245, 249, 0.94);
  --muted: rgba(148, 163, 184, 0.85);
  --cyan: #22d3ee;
  --green: #4ade80;
  --amber: #fbbf24;
  --max: 74rem;
}
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(34,211,238,0.06), transparent 55%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(56,189,248,0.025) 40px);
}
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
.shell { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 1.25rem 1.25rem 3rem; }
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.brand h1 {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
}
.brand .tagline {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 36rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
nav a { color: var(--muted); }
nav a[aria-current="page"] { color: var(--cyan); }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem 1.15rem;
  margin-bottom: 0.85rem;
}
.panel h2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.panel h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.45rem;
  color: #e2e8f0;
}
.panel p, .panel li {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.panel ul { padding-left: 1.15rem; margin-bottom: 0.65rem; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.85rem; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .span-4, .span-6, .span-8 { grid-column: span 12; }
}
.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.metric label { font-size: 0.78rem; color: var(--muted); }
.metric output {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.25rem;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 0.6s ease;
}
.pill {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--green);
  background: rgba(74,222,128,0.08);
}
.pill.warn {
  border-color: rgba(251,191,36,0.45);
  color: var(--amber);
  background: rgba(251,191,36,0.08);
}
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.topology {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
  white-space: pre-wrap;
  background: rgba(0,0,0,0.25);
  padding: 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--line);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
table.data th, table.data td {
  text-align: left;
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid var(--line);
}
table.data th {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}
table.data td { color: var(--muted); font-variant-numeric: tabular-nums; }
.note {
  font-size: 0.78rem;
  color: rgba(148,163,184,0.7);
  border-left: 2px solid var(--line);
  padding-left: 0.75rem;
  margin-top: 0.75rem;
}
.site-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  color: rgba(148,163,184,0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.hero img, .hero svg {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
}
.hero-copy h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.65rem;
}
.hero-copy p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.55rem; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.hero-visual { min-width: 0; }
.hero img, .hero svg, .hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 160px;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: #0c1524;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
}
pre.code, code.inline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}
pre.code {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem;
  overflow-x: auto;
  color: #cbd5e1;
  margin: 0.65rem 0;
}
code.inline {
  background: rgba(34,211,238,0.08);
  border: 1px solid var(--line);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  color: var(--cyan);
}
.endpoint { font-family: "IBM Plex Mono", monospace; font-size: 0.82rem; color: #fff; }
.method {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(74,222,128,0.15);
  color: var(--green);
  margin-right: 0.45rem;
}
.try-out { margin-top: 0.5rem; font-size: 0.78rem; }
.try-out button {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(34,211,238,0.1);
  color: var(--cyan);
  cursor: pointer;
}
.try-out button:hover { background: rgba(34,211,238,0.18); }
.try-out pre { margin-top: 0.5rem; max-height: 220px; overflow: auto; }
.compare { font-size: 0.82rem; }
.compare td:first-child { color: #e2e8f0; white-space: nowrap; }
.net-flow {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  line-height: 1.55;
}
.net-flow strong { color: #cbd5e1; font-weight: 500; }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}
@media (max-width: 1100px) { .compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .compliance-grid { grid-template-columns: 1fr; } }
.zones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.zone {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.zone strong {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.zone .ok { color: var(--green); }
.zone .warn { color: var(--amber); }
.zone a { font-size: 0.72rem; }
.legal-list { list-style: none; padding: 0; margin: 0 0 0.85rem; }
.legal-list li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.legal-list li:last-child { border-bottom: none; }
.legal-list a { word-break: break-word; }
.legal-list .act-id {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.15rem;
}
.request-form {
  color-scheme: dark;
}
.request-form label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin: 0 0 0.35rem;
}
.request-form label span.req { color: var(--amber); }
.request-form .field { margin-bottom: 0.85rem; }
.request-form .field-hint {
  margin-top: 0.35rem;
  font-size: 0.74rem;
  color: rgba(148, 163, 184, 0.82);
  line-height: 1.45;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background-color: rgba(0, 0, 0, 0.32);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.58);
}
.request-form input:hover,
.request-form select:hover,
.request-form textarea:hover {
  border-color: rgba(56, 189, 248, 0.32);
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
  background-color: rgba(0, 0, 0, 0.42);
}
.request-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.request-form select option {
  background-color: #0a101c;
  color: #f1f5f9;
}
.request-form select option:checked {
  background-color: #122033;
  color: #fff;
}
.request-form textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
.request-form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.inquiry-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(10, 16, 28, 0.98), rgba(6, 20, 36, 0.92));
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.06);
}
.inquiry-banner h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.35rem;
  letter-spacing: 0;
  text-transform: none;
}
.inquiry-banner p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  max-width: 42rem;
  line-height: 1.55;
}
.inquiry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 17rem) minmax(0, 1fr);
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
@media (max-width: 900px) {
  .inquiry-layout { grid-template-columns: 1fr; }
}
.inquiry-aside {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.inquiry-step {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
}
.inquiry-step-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.inquiry-step strong {
  display: block;
  font-size: 0.82rem;
  color: #e2e8f0;
  margin-bottom: 0.2rem;
}
.inquiry-step span {
  font-size: 0.74rem;
  color: rgba(148, 163, 184, 0.75);
  line-height: 1.45;
}
.inquiry-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.inquiry-card-head {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}
.inquiry-card-head h3 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.inquiry-card-head p {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.7);
}
.inquiry-card-body { padding: 1rem 1.15rem 1.15rem; }
.form-section {
  border: none;
  padding: 0;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.form-section-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 211, 238, 0.85);
  margin-bottom: 0.75rem;
}
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.consent-box:hover {
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(0, 0, 0, 0.28);
}
.consent-box input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--cyan);
  cursor: pointer;
}
.consent-box span {
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.88);
  line-height: 1.55;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.form-actions-note {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.65);
  max-width: 22rem;
  line-height: 1.45;
}
.request-form button[type="submit"] {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.35rem;
  border-radius: 6px;
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.18), rgba(74, 222, 128, 0.08));
  color: var(--green);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.request-form button[type="submit"]:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.26), rgba(74, 222, 128, 0.12));
  border-color: rgba(74, 222, 128, 0.6);
}
.request-form button[type="submit"]:active:not(:disabled) { transform: translateY(1px); }
.request-form button[type="submit"]:disabled { opacity: 0.55; cursor: wait; }
.form-msg {
  margin-top: 1rem;
  font-size: 0.84rem;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  line-height: 1.5;
}
.form-msg.ok {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.08);
  color: var(--green);
}
.form-msg.err {
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.06);
  color: #fca5a5;
}
.form-msg .inquiry-id {
  display: block;
  margin-top: 0.35rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  opacity: 0.85;
}
