:root {
  --bg: #07111d;
  --bg2: #0b1728;
  --panel: rgba(255, 255, 255, 0.07);
  --panel2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef4fb;
  --muted: #aebacc;
  --accent: #5cc8ff;
  --accent-2: #88dcff;
  --inputBg: rgba(255, 255, 255, 0.97);
  --inputText: #0f172a;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 400px at 10% -5%, rgba(92, 200, 255, 0.18), transparent 60%),
    radial-gradient(720px 340px at 90% 0%, rgba(92, 200, 255, 0.11), transparent 55%),
    linear-gradient(180deg, #08111c 0%, #091522 45%, #0a1627 100%);
  min-height: 100vh;
  line-height: 1.55;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px 12px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.shell {
  margin: 20px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 17, 28, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  width: 168px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  min-height: 52px;
}

.brand-sub {
  color: #d7e5f6;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.nav a:hover {
  color: white;
  text-decoration: none;
}

.nav-external {
  opacity: 0.72;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
  max-width: 9ch;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #2b9de3);
  color: #07111d;
  box-shadow: 0 10px 28px rgba(43, 157, 227, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(92, 200, 255, 0.55);
}

.context {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(92, 200, 255, 0.18);
  background: rgba(92, 200, 255, 0.08);
}

.context-title {
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.context p {
  margin-bottom: 4px;
  color: #dfeaf7;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-card,
.card,
.form-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel-card,
.card {
  padding: 24px;
}

.panel-card h2 {
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.panel-card p,
.card p,
.section-head p,
.submit-note,
.form-head span,
.field-note {
  color: var(--muted);
}

.panel-label,
.tag,
.badge-soft {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-label,
.tag,
.badge-soft {
  background: rgba(92, 200, 255, 0.12);
  color: var(--accent-2);
}

.panel-label.subtle {
  background: rgba(255, 255, 255, 0.08);
  color: #d7e5f6;
}

.tag.alt {
  background: rgba(255, 255, 255, 0.08);
  color: #d7e5f6;
}

.quick-card {
  padding-top: 20px;
}

.mini-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.trust-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.trust-item strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
}

.section {
  padding-top: 34px;
  padding-bottom: 10px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 0;
}

.section-head p {
  max-width: 42ch;
}

.inquiry-layout {
  padding-bottom: 40px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
  align-items: start;
}

.form-panel {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, var(--panel), var(--panel2));
  border-color: rgba(92, 200, 255, 0.16);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.form-head h3 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.form-section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}

.form-section h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two-up {
  grid-template-columns: 1fr 1fr;
}

.field-full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #dfeaf7;
}

.field-note {
  font-size: 0.84rem;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: var(--inputBg);
  color: var(--inputText);
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.textarea {
  min-height: 170px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(92, 200, 255, 0.6);
  box-shadow:
    0 0 0 3px rgba(92, 200, 255, 0.14),
    0 10px 24px rgba(43, 157, 227, 0.08);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.submit-note {
  margin: 0;
  max-width: 46ch;
}

.sidebar-stack {
  display: grid;
  gap: 16px;
}

.compact-card h3,
.sidebar-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
}

.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1080px) {

  .hero,
  .inquiry-grid,
  .three-up,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 128px;
    height: 40px;
  }

  .brand-sub {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    white-space: normal;
    line-height: 1.15;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    grid-column: 1 / 2;
    gap: 12px;
  }

  .nav-toggle {
    grid-column: 2 / 3;
    justify-self: end;
  }

  .topbar.nav-open .nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .shell {
    margin: 0;
    border-radius: 0;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding-top: 36px;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-grid.two-up {
    grid-template-columns: 1fr;
  }
}