* {
  box-sizing: border-box;
}

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

a,button,input,textarea {
  transition: .18s ease;
}

p {
  line-height: 1.7;
}

.recaptcha {
  font-size: 13px;
  line-height: 1.6;
}

.recaptcha a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recaptcha a:hover {
  filter: brightness(.82);
}

body {
  margin: 0;
  background: #020617;
  color: #e2e8f0;
  font-family: "Courier New",monospace;
}

.site-shell {
  min-height: 100vh;
  background: radial-gradient(circle at top right,rgba(34,211,238,.18),transparent 32%),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: auto,42px 42px,42px 42px;
}

.site-header {
  padding: 18px 32px;
  border-bottom: 1px solid rgba(34,211,238,.45);
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  background: rgba(2,6,23,.85);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  width: 200px;
  max-width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand span {
  color: #94a3b8;
  font-size: 11px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 10px;
}

.main-nav a {
  color: #e2e8f0;
  text-decoration: none;
  border: 1px solid rgba(34,211,238,.45);
  padding: 10px 14px;
  background: #0f172a;
  box-shadow: inset 0 0 18px rgba(34,211,238,.08);
}

.main-nav a:hover,.main-nav a.active {
  color: #020617;
  background: #22d3ee;
}

.nav-toggle,.nav-trigger {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 72px 6vw;
}

.eyebrow {
  color: #a855f7;
}

.hero h1 {
  font-size: clamp(38px,6vw,82px);
  line-height: 1;
  margin: 18px 0;
  text-shadow: 0 0 18px rgba(34,211,238,.35);
}

.hero p {
  line-height: 1.8;
  color: #cbd5e1;
}

.hero-copy {
  border: 1px solid rgba(34,211,238,.45);
  padding: 28px;
  background: rgba(15,23,42,.72);
}

.hero-media {
  border: 1px solid rgba(168,85,247,.6);
  padding: 12px;
  background: #020617;
}

.hero-media img {
  width: 100%;
  display: block;
}

.btn {
  display: inline-block;
  color: #020617;
  background: #22d3ee;
  text-decoration: none;
  padding: 13px 18px;
  margin-right: 10px;
  font-weight: 900;
  clip-path: polygon(0 0,90% 0,100% 30%,100% 100%,0 100%);
}

.btn.alt {
  background: transparent;
  color: #22d3ee;
  border: 1px solid #22d3ee;
}

.page-main {
  padding: 0 6vw 80px;
}

.content-panel {
  border: 1px solid rgba(34,211,238,.36);
  background: rgba(15,23,42,.75);
  padding: 26px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.info-card {
  background: #020617;
  border: 1px solid rgba(168,85,247,.45);
  padding: 22px;
}

.info-card strong {
  color: #22d3ee;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  color: #22d3ee;
}

.field label:before {
  content: ' > ';
}

.field input,.field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #020617;
  color: #e2e8f0;
  border: 1px solid rgba(34,211,238,.45);
  padding: 14px;
  font: inherit;
}

.field textarea {
  min-height: 150px;
}

.submit-btn {
  border: 1px solid #22d3ee;
  background: #22d3ee;
  color: #020617;
  padding: 14px 22px;
  font-weight: 900;
  font-family: inherit;
}

.recaptcha a {
  color: #22d3ee;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(34,211,238,.45);
  padding: 28px 6vw;
  background: #020617;
  color: #94a3b8;
}

.site-footer a {
  color: #22d3ee;
  text-decoration: none;
  margin-right: 18px;
}

.site-footer a:hover {
  color: #a855f7;
}

@media(max-width:800px) {
  .site-footer {
    flex-wrap: wrap;
  }
  
  .site-footer div:first-child {
    padding-bottom: 10px;
  }
  
  .brand {
    width: 200px;
    max-width: calc(100vw - 110px);
    height: 72px;
  }
  
  .brand img {
    max-width: 100%;
    max-height: 100%;
  }
  
  .site-header {
    align-items: flex-start;
    padding: 16px;
  }
  
  .nav-trigger {
    display: grid;
    gap: 5px;
    margin-top: 12px;
  }
  
  .nav-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #22d3ee;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    grid-template-columns: 1fr;
    background: #020617;
    padding: 12px;
  }
  
  .nav-toggle:checked~.main-nav {
    display: grid;
  }
  
  .hero {
    grid-template-columns: 1fr;
    padding: 46px 18px;
  }
  
  .page-main {
    padding: 0 18px 70px;
  }
  
  .card-grid,.contact-form {
    grid-template-columns: 1fr;
  }
}
