:root {
  --bg: #071a22;
  --bg-2: #0d2d3d;
  --panel: rgba(7, 24, 33, 0.76);
  --panel-solid: #0d2531;
  --paper: #f4f9fb;
  --paper-2: #dff3fb;
  --ink: #f3fbff;
  --ink-soft: rgba(243, 251, 255, 0.76);
  --ink-dark: #0f2430;
  --line: rgba(185, 235, 255, 0.18);
  --brand: #2eb7e3;
  --brand-2: #7fe3f1;
  --brand-3: #69d5ce;
  --gold: #c6f4ff;
  --shadow: 0 30px 80px rgba(0, 10, 18, 0.34);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(127, 227, 241, 0.2), transparent 24%),
    radial-gradient(circle at bottom left, rgba(46, 183, 227, 0.18), transparent 28%),
    linear-gradient(180deg, #0d3445 0%, var(--bg) 26%, #08141b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 180px);
  opacity: 0.38;
}

a {
  color: var(--paper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  z-index: 40;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(5, 20, 28, 0.68);
  border-bottom: 1px solid rgba(185, 235, 255, 0.12);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo::before {
  content: "";
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: url("/assets/img/logo-shield-white.svg") center/contain no-repeat;
  opacity: 0.95;
}

.logo small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.18em;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.96rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(127, 227, 241, 0.24);
  background: linear-gradient(135deg, var(--brand) 0%, #1598c2 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 18px 38px rgba(32, 164, 203, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink-dark);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(32, 164, 203, 0.28);
}

.hero {
  padding: 34px 0 32px;
}

.hero-shell,
.hero-copy,
.hero-card,
.card,
.cta,
.faq,
.quote,
.table-box,
.article,
.contact-card,
.form-card,
.footer-box {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-shell {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(17, 99, 129, 0.88) 0%, rgba(17, 99, 129, 0.8) 42%, rgba(8, 25, 34, 0.38) 78%, rgba(8, 25, 34, 0.55) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(circle at top right, rgba(127, 227, 241, 0.36), transparent 32%),
    #0d2633;
  position: relative;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 76%, rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 54px 48px 52px;
}

.hero-card,
.card,
.cta,
.faq,
.quote,
.article,
.contact-card,
.form-card,
.footer-box {
  background: linear-gradient(180deg, rgba(9, 32, 43, 0.92), rgba(8, 21, 29, 0.92));
  backdrop-filter: blur(10px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.hero-card.visual {
  background:
    linear-gradient(180deg, rgba(6, 23, 31, 0.16), rgba(6, 23, 31, 0.82)),
    linear-gradient(135deg, rgba(11, 140, 181, 0.46), rgba(6, 23, 31, 0.18)),
    url("/assets/img/mall-worker.png") center/cover no-repeat;
}

.hero-card.visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 10.8ch;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.3rem;
}

p,
li,
td,
th,
label,
input,
select,
textarea {
  font-size: 1rem;
}

.lead {
  max-width: 66ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}

.hero-points,
.check-list,
.link-list,
.mini-list,
.signal-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-points li,
.check-list li,
.mini-list li,
.signal-list li,
.contact-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.hero-points li::before,
.check-list li::before,
.mini-list li::before,
.signal-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 5px rgba(127, 227, 241, 0.1);
}

.hero-badges,
.stat-grid,
.grid-3,
.grid-2,
.article-grid,
.signal-grid,
.contact-strip {
  display: grid;
  gap: 20px;
}

.hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.metric-chip,
.stat {
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-chip strong,
.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.7rem;
  color: #fff;
}

.metric-chip span,
.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.signal-grid {
  grid-template-columns: repeat(2, 1fr);
}

.signal {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.signal strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.stat-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

section {
  padding: 28px 0;
}

.section-head {
  max-width: 74ch;
  margin-bottom: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.article {
  padding: 28px;
}

.card p:last-child,
.article p:last-child {
  margin-bottom: 0;
}

.surface {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote {
  padding: 30px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(127, 227, 241, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(15, 114, 148, 0.92), rgba(8, 30, 40, 0.95));
}

.cta::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 52px;
  transform: rotate(24deg);
}

.faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.faq details:first-child {
  border-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.table-box {
  overflow-x: auto;
  background: rgba(6, 21, 29, 0.9);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card,
.form-card {
  padding: 30px;
}

.channel-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.channel-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lead-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.inline-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.contact-rail {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100% - 36px, 620px);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 31, 42, 0.92);
  border: 1px solid rgba(185, 235, 255, 0.18);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.contact-pill.primary {
  background: linear-gradient(135deg, var(--brand) 0%, #1598c2 100%);
  border-color: rgba(46, 183, 227, 0.42);
}

.crumbs {
  padding: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.crumbs a {
  color: inherit;
}

.site-footer {
  padding: 50px 0 74px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.footer-box {
  padding: 30px;
}

.link-list li {
  margin-bottom: 10px;
}

.inline-visual {
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(7, 28, 38, 0.16), rgba(7, 28, 38, 0.76)),
    url("/assets/img/report-photo-1.jpg") center/cover no-repeat;
}

.stack {
  display: grid;
  gap: 20px;
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-badges,
  .grid-3,
  .grid-2,
  .footer-grid,
  .contact-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card {
    min-height: auto;
  }

  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    color: #fff;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 25, 34, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .nav {
    display: grid;
  }
}

@media (max-width: 680px) {
  .hero,
  section,
  .site-footer {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-copy,
  .hero-card,
  .card,
  .cta,
  .article,
  .quote,
  .contact-card,
  .form-card,
  .footer-box {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }

  .stat-grid,
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .lead-form .row {
    grid-template-columns: 1fr;
  }

  .contact-rail {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: stretch;
  }

  .contact-pill {
    flex: 1 1 auto;
    justify-content: center;
  }
}
