:root {
  --bg: #f1f5f9;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --bg-hero: #effcff;

  --bg-hero-2: #eaf7ff;
  --teal-glow: rgba(28, 148, 143, 0.1);
  --teal-glow-2: rgba(28, 148, 143, 0.07);
  --aqua-glow: rgba(6, 182, 212, 0.16);
  --aqua-glow-2: rgba(34, 211, 238, 0.1);
  --aqua-diag: rgba(6, 182, 212, 0.08);
  --line: rgba(15, 23, 42, 0.03);

  --ink: #0f172a;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;

  --brand: #1e3a5f;
  --brand-2: #0f2740;

  --steel: #0f2740;
  --steel-2: rgba(15, 39, 64, 0.92);

  --safety: #f59e0b;
  --safety-2: #fb923c;

  --shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);

  --r: 16px;
  --r-sm: 12px;

  --max: 1520px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;

  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: 84px 0;
  border-bottom: 1px solid var(--border);
}

section.alt {
  background: var(--bg-alt);
}

@media (max-width: 820px) {
  section {
    padding: 64px 0;
  }
}

h1 {
  color: var(--ink);
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

.small {
  color: var(--muted);
  max-width: 920px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;

  background: rgba(241, 245, 249, 0.94);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.brand-logo {
  height: 90px;
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.brand-text {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;

  color: var(--ink);
  line-height: 1;
  margin: 0;
  padding: 0;
}

.brand-badge {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--safety), var(--safety-2));
  box-shadow:
    0 10px 25px rgba(245, 158, 11, 0.22),
    0 10px 30px rgba(37, 99, 235, 0.12);
}

.topbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  border-radius: 16px;

  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.72);
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 950;
  padding: 9px 12px;
  border-radius: 12px;

  transition:
    background 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.nav a:hover {
  background: rgba(30, 58, 95, 0.08);
  color: var(--ink);

  transform: translateY(-1px);
}

.nav a.active {
  color: var(--ink);
  background: rgba(245, 158, 11, 0.16);
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.14);
}
.btn.primary {
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow:
    0 16px 40px rgba(15, 39, 64, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 55px rgba(15, 39, 64, 0.32),
    0 0 0 4px rgba(245, 158, 11, 0.14);
}
.btn.primary::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.95),
    rgba(251, 146, 60, 0.75)
  );
  opacity: 0.65;
}
.btn.primary {
  position: relative;
  overflow: hidden;
}
.topbar .btn.primary {
  padding: 11px 16px;
  box-shadow:
    0 16px 36px rgba(37, 99, 235, 0.22),
    0 10px 26px rgba(2, 6, 23, 0.08);
}

.topbar .btn.primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 20px 46px rgba(37, 99, 235, 0.26),
    0 12px 30px rgba(2, 6, 23, 0.1);
}

@media (max-width: 720px) {
  .nav {
    border-radius: 18px;
    padding: 8px;
  }
}

header.hero-header {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);

  background:
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 55%,
      var(--aqua-diag) 55%,
      var(--aqua-diag) 100%
    ),
    radial-gradient(900px 520px at 80% 25%, var(--aqua-glow), transparent 60%),
    radial-gradient(
      900px 520px at 15% 10%,
      var(--aqua-glow-2),
      transparent 62%
    ),
    linear-gradient(180deg, var(--bg-hero) 0%, var(--bg-hero-2) 100%);
}
.hero-right::before {
  content: none;
  position: absolute;
  inset: -28px;
  border-radius: 28px;
  background:
    radial-gradient(
      60% 60% at 30% 20%,
      rgba(245, 158, 11, 0.18),
      transparent 60%
    ),
    radial-gradient(
      60% 60% at 80% 70%,
      rgba(37, 99, 235, 0.14),
      transparent 60%
    );
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.hero-right img {
  position: relative;
  z-index: 1;
}
.hero-right img {
  border: 0;
  box-shadow: none;
  background: transparent;
}
.hero {
  position: relative;
}

.hero > * {
  position: relative;
}
.hero::after {
  content: none;
  position: absolute;
  right: -80px;
  top: 430px;
  width: min(620px, 50vw);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.9),
    rgba(251, 146, 60, 0.7)
  );
  opacity: 0.65;
  z-index: 0;
}

header.hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.35;
}

header.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      1200px 600px at 50% -10%,
      rgba(15, 23, 42, 0.04),
      transparent 60%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(15, 23, 42, 0.012),
      rgba(15, 23, 42, 0.012) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.3;
}

header.hero-header .container {
  position: relative;
  z-index: 1;
}

header.hero-header p {
  color: var(--text);
}

header.hero-header .small {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 26px;
  align-items: center;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 560px) {
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-kpi {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-kpi span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.92rem;
}

.hero-kpi span .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--safety), var(--safety-2));
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.25);
}

.mock-stat .k {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 800;
  font-size: 0.82rem;
}

.mock-stat .v {
  color: #fff;
  font-weight: 950;
  font-size: 1.05rem;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;

  font-weight: 950;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  will-change: transform;
  cursor: pointer;
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(226, 232, 240, 0.18);
}

header.hero-header .btn.secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(226, 232, 240, 0.95);
}

.btn.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.18);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.9),
    rgba(245, 158, 11, 0.75)
  );
  opacity: 0.45;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.22);
}

.card p {
  color: var(--muted);
}

.card-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.14),
    rgba(245, 158, 11, 0.1)
  );
  border: 1px solid rgba(37, 99, 235, 0.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.ico svg {
  width: 18px;
  height: 18px;
  stroke: rgba(15, 23, 42, 0.85);
}

ul {
  list-style: none;
  margin-top: 12px;
}

li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  color: var(--muted);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid rgba(37, 99, 235, 0.5);
}

.quote {
  position: relative;
  padding: 18px;
  border-radius: var(--r);
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.08),
    rgba(2, 6, 23, 0.02)
  );
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--ink);
  font-style: italic;
  margin: 18px 0 10px;
}

.quote::before {
  content: "“";
  position: absolute;
  left: 14px;
  top: -14px;
  font-size: 48px;
  color: rgba(37, 99, 235, 0.35);
  font-style: normal;
}

.cta-band {
  background:
    radial-gradient(
      900px 420px at 12% 0%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 90% 20%,
      rgba(37, 99, 235, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, var(--bg-alt));
}

.cta-box {
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.95)
  );
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-box strong {
  color: var(--ink);
}

.cta-box p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  padding-left: 22px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.22),
    rgba(245, 158, 11, 0.2)
  );
  opacity: 0.9;
}

.step {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(248, 250, 252, 0.94)
  );
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 240px at 0% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      700px 240px at 100% 0%,
      rgba(37, 99, 235, 0.12),
      transparent 55%
    );
  opacity: 0.9;
  pointer-events: none;
}

.step::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.1);
}

.step-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  font-weight: 950;
  color: var(--steel-2);
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.95),
    rgba(251, 146, 60, 0.75)
  );
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.22);
}

.step h3,
.step p {
  position: relative;
}

.step p {
  color: var(--muted);
  margin: 0;
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow);
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  background: var(--surface);
  margin: 12px 0;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
  color: var(--ink);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-weight: 950;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

#contact {
  background:
    radial-gradient(
      900px 420px at 15% 0%,
      rgba(37, 99, 235, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(37, 99, 235, 0.05), transparent 70%);
}

footer {
  text-align: center;
  padding: 34px 0;
  font-size: 0.92rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
  border-radius: 12px;
}

a.btn:focus-visible,
button.btn:focus-visible {
  outline: none;
}

.eyebrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.92rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.pill.ghost {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: none;
}

.proofs {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, var(--bg-alt));
}

.proofs-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 980px) {
  .proofs-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .proofs-inner {
    grid-template-columns: 1fr;
  }
}

.proof {
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 252, 0.96)
  );
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 140px at 0% 0%,
    rgba(37, 99, 235, 0.1),
    transparent 55%
  );
  pointer-events: none;
}

.proof-k {
  position: relative;
  font-weight: 950;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.proof-v {
  position: relative;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 880px) {
  .compare {
    grid-template-columns: 1fr;
  }
}

.compare-col {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 252, 0.96)
  );
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.07);
  position: relative;
  overflow: hidden;
}

.compare-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  opacity: 0.25;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.9),
    rgba(245, 158, 11, 0.75)
  );
}

.compare-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 10px;
}

.compare-title.bad::before {
  content: "✕";
  font-weight: 950;
  color: rgba(239, 68, 68, 0.9);
}

.compare-title.good::before {
  content: "✓";
  font-weight: 950;
  color: rgba(34, 197, 94, 0.9);
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-list li {
  padding-left: 26px;
  margin: 10px 0;
  color: var(--muted);
}

.compare-list li::before {
  width: 9px;
  height: 9px;
  top: 0.55em;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 2px solid rgba(37, 99, 235, 0.45);
}

.card {
  transform: translateZ(0);
}

.card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    500px 180px at 20% 0%,
    rgba(37, 99, 235, 0.08),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.hero-sexy {
  padding: 68px 0 78px;
  background: transparent;
}

.hero-title {
  font-size: clamp(2.2rem, 3.9vw, 3.3rem);
  letter-spacing: -0.03em;
}
header.hero-header .pill {
  background: rgba(30, 58, 95, 0.08);
  border-color: rgba(30, 58, 95, 0.18);
  color: var(--brand);
}
header.hero-header .pill:first-child {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.22);
  color: var(--ink);
}

header.hero-header .pill.ghost {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.hero-sub {
  max-width: 820px;
  font-weight: 900;
  color: var(--ink);
  margin: 12px 0 16px;
  font-size: 1.05rem;
}

.eyebrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill.ghost {
  color: rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.05);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 16px;
}

@media (max-width: 560px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

.hicon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 58, 95, 0.18);
  background: rgba(30, 58, 95, 0.08);
}

.hicon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(15, 23, 42, 0.85);
}

.hk {
  color: var(--ink);
  font-weight: 950;
  line-height: 1.1;
}
.hcard {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.hv {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
  margin-top: 2px;
}

.hero-text {
  color: var(--text);
  max-width: 920px;
}

.hero-small {
  max-width: 980px;
}

.hero-right {
  position: relative;
  justify-self: end;
  z-index: 1;
}
.hero-right .img-size img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.float-badge {
  position: absolute;
  right: -10px;
  bottom: -14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #020617bf;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
  .float-badge {
    right: 8px;
    bottom: 8px;
  }
}

.fb-top {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 900;
  font-size: 0.82rem;
}

.fb-main {
  color: #fff;
  font-weight: 1000;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.fb-sub {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 850;
  font-size: 0.86rem;
}

.smart-wrap {
  display: grid;
  gap: 14px;
}

.smart-toggle {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
  align-self: start;
}

.smart-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.smart-toggle label {
  cursor: pointer;
  font-weight: 950;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.85);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.smart-toggle label:hover {
  transform: translateY(-1px);
  border-color: rgba(226, 232, 240, 0.18);
}

.smart-panel {
  display: none;
}

#mode-chantier:checked ~ .smart-panel.chantier {
  display: block;
}

#mode-bureau:checked ~ .smart-panel.bureau {
  display: block;
}

#mode-direction:checked ~ .smart-panel.direction {
  display: block;
}

.smart-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.smart-status.ok .dot {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.95),
    rgba(22, 163, 74, 0.75)
  );
}

.smart-status.neutral .dot {
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.95),
    rgba(251, 146, 60, 0.75)
  );
}

.smart-status.direction .dot {
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.95),
    rgba(245, 158, 11, 0.7)
  );
}

.smart-stat .k {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 850;
  font-size: 0.82rem;
}

.smart-stat .v {
  color: #fff;
  font-weight: 950;
  font-size: 1.08rem;
  margin-top: 4px;
}

.smart-stat .hint.warn {
  color: rgba(251, 191, 36, 0.95);
}

.badge.ok {
  border-color: rgba(34, 197, 94, 0.25);
}

.badge.warn {
  border-color: rgba(245, 158, 11, 0.28);
}

.badge.neutral {
  border-color: rgba(148, 163, 184, 0.22);
}

.kpi .k {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 850;
  font-size: 0.82rem;
}

.kpi .v {
  color: #fff;
  font-weight: 950;
  font-size: 1.1rem;
  margin-top: 4px;
}

.smart-wrap {
  display: grid;
  gap: 14px;
}

.smart-toggle {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
  align-self: start;
}

.smart-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.smart-toggle label {
  cursor: pointer;
  user-select: none;
  font-weight: 950;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.85);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.smart-toggle label:hover {
  transform: translateY(-1px);
  border-color: rgba(226, 232, 240, 0.18);
}

#mode-chantier:checked ~ label[for="mode-chantier"],
#mode-bureau:checked ~ label[for="mode-bureau"],
#mode-direction:checked ~ label[for="mode-direction"] {
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.9),
    rgba(29, 78, 216, 0.9)
  );
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.22);
}

.smart-panel {
  display: none;
}

#mode-chantier:checked ~ .smart-panel.chantier {
  display: block;
}
#mode-bureau:checked ~ .smart-panel.bureau {
  display: block;
}
#mode-direction:checked ~ .smart-panel.direction {
  display: block;
}

.smart-mock {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.smart-status {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.95);
  font-weight: 950;
}

.smart-status small {
  margin-left: auto;
  color: rgba(226, 232, 240, 0.78);
  font-weight: 800;
  font-size: 0.85rem;
}

.smart-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.smart-status.ok .dot {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.95),
    rgba(22, 163, 74, 0.75)
  );
}
.smart-status.neutral .dot {
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.95),
    rgba(251, 146, 60, 0.75)
  );
}
.smart-status.direction .dot {
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.95),
    rgba(245, 158, 11, 0.7)
  );
}

.smart-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.smart-title {
  justify-self: center;
  font-weight: 950;
  color: rgba(226, 232, 240, 0.92);
  letter-spacing: -0.01em;
}

.smart-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.88);
}

.smart-body {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.smart-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 12px;
}

.smart-row h4 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.smart-row small {
  display: block;
  margin-top: 8px;
  color: rgba(226, 232, 240, 0.78);
  font-weight: 800;
  font-size: 0.85rem;
}

.smart-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.14);
  overflow: hidden;
}
.smart-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.9),
    rgba(245, 158, 11, 0.75)
  );
}

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

.bureau-grid {
  grid-template-columns: repeat(4, 1fr);
}

.smart-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 12px;
}

.smart-stat .k {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 850;
  font-size: 0.82rem;
}

.smart-stat .v {
  color: #fff;
  font-weight: 950;
  font-size: 1.08rem;
  margin-top: 4px;
}

.smart-stat .hint {
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.74);
  font-weight: 800;
}

.smart-stat .hint.warn {
  color: rgba(251, 191, 36, 0.95);
}

.smart-alert {
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  color: rgba(226, 232, 240, 0.92);
}

.smart-alert strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 950;
}

.smart-alert ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.smart-alert li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: rgba(226, 232, 240, 0.82);
}
.smart-alert li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.25);
  border: 2px solid rgba(37, 99, 235, 0.55);
}

.smart-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.smart-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.88);
  font-weight: 900;
  font-size: 0.88rem;
}

.smart-toast {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(10px);
  color: rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.smart-toast .mini {
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.smart-toast strong {
  display: block;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.smart-toast small {
  display: block;
  margin-top: 2px;
  color: rgba(226, 232, 240, 0.78);
  font-weight: 800;
}

.smart-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.smart-actions .action {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: rgba(226, 232, 240, 0.92);
  transition:
    transform 0.12s ease,
    border-color 0.12s ease;
}

.smart-actions .action:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.28);
}

.smart-actions .ic {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 1.05rem;
}

.smart-actions .action small {
  color: rgba(226, 232, 240, 0.72);
  font-weight: 800;
}

.smart-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.smart-table .t-head,
.smart-table .t-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
  padding: 10px 12px;
}

.smart-table .t-head {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.85);
  font-weight: 950;
  font-size: 0.88rem;
}

.smart-table .t-row {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(226, 232, 240, 0.88);
  font-weight: 850;
  font-size: 0.9rem;
}

.badge {
  justify-self: end;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.82rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.9);
}

.badge.ok {
  border-color: rgba(34, 197, 94, 0.25);
}
.badge.warn {
  border-color: rgba(245, 158, 11, 0.28);
}
.badge.neutral {
  border-color: rgba(148, 163, 184, 0.22);
}

.smart-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kpi {
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.kpi .k {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 850;
  font-size: 0.82rem;
}

.kpi .v {
  color: #fff;
  font-weight: 950;
  font-size: 1.1rem;
  margin-top: 4px;
}

.kpi small {
  display: block;
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.72);
  font-weight: 800;
  font-size: 0.82rem;
}

.spark {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  padding: 8px 2px 2px;
}

.spark span {
  display: block;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.9),
    rgba(245, 158, 11, 0.75)
  );
  opacity: 0.85;
}

@media (max-width: 980px) {
  .bureau-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .smart-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .smart-grid {
    grid-template-columns: 1fr;
  }
  .smart-actions {
    grid-template-columns: 1fr;
  }
  .smart-toast {
    position: static;
    margin: 0 14px 14px;
  }
}
footer,
.site-footer {
  background: #0f2740;
  color: rgba(226, 232, 240, 0.92);
  border-top: 1px solid rgba(226, 232, 240, 0.12);
}

.site-footer {
  padding: 28px 0;
  text-align: left;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: rgba(148, 163, 184, 0.92);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(226, 232, 240, 0.88);
  text-decoration: none;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(226, 232, 240, 0.22);
}

.footer-links .sep {
  color: rgba(148, 163, 184, 0.45);
  font-weight: 900;
}

@media (max-width: 640px) {
  .site-footer {
    text-align: center;
  }
  .footer-inner {
    justify-content: center;
  }
}

.cookie-banner:not([hidden]) {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.cookie-card {
  width: min(980px, 100%);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.cookie-text strong {
  color: rgba(226, 232, 240, 0.95);
  font-weight: 950;
}

.cookie-text p {
  margin: 6px 0 0;
  color: rgba(226, 232, 240, 0.78);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 560px) {
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

.form .field {
  margin-top: 12px;
}

.form label {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.form textarea {
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form-status {
  margin-top: 12px;
  font-weight: 900;
  color: var(--muted);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chips label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);

  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  user-select: none;

  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.chips label:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}

.chips input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand-2);
}

.chips .chip-text {
  line-height: 1.15;
  max-width: 240px;
}

.chips label:has(input:checked) {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.1);
}

.topbar,
.topbar-inner,
.topbar-right {
  overflow: visible;
}

.topbar a.btn.primary,
.topbar a.btn.primary:focus,
.topbar a.btn.primary:focus-visible,
.topbar a.btn.primary:active {
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.topbar a.btn.primary {
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.1) !important;
}

a.btn:focus-visible,
button.btn:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.26) !important;
}

.topbar a.btn.primary:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 4px rgba(6, 182, 212, 0.26),
    0 10px 26px rgba(2, 6, 23, 0.1) !important;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.icon-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 14px;
  border-radius: 18px;

  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 252, 0.96)
  );
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);

  text-decoration: none;
  color: var(--ink);
  font-weight: 950;

  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.icon-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.1);
}

.icon-pill:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 14px 34px rgba(2, 6, 23, 0.1);
}

.icon-pill .icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;

  display: grid;
  place-items: center;

  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.14),
    rgba(245, 158, 11, 0.1)
  );
  border: 1px solid rgba(37, 99, 235, 0.18);
  flex: 0 0 auto;
}

.icon-pill svg {
  width: 22px;
  height: 22px;
  stroke: rgba(15, 23, 42, 0.85);
}

.icon-pill .label {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.icon-pill::after {
  content: attr(data-tip);
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% + 10px);

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(2, 6, 23, 0.92);
  color: rgba(226, 232, 240, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);

  font-weight: 850;
  font-size: 0.88rem;
  line-height: 1.35;

  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.12s ease,
    transform 0.12s ease;
  z-index: 5;
}

.icon-pill:hover::after,
.icon-pill:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.u-accordion {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 880px) {
  .u-accordion {
    grid-template-columns: 1fr;
  }
}

.u-item {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 252, 0.96)
  );
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}

.u-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 950;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.u-item summary::-webkit-details-marker {
  display: none;
}

.u-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.14),
    rgba(245, 158, 11, 0.1)
  );
  color: rgba(15, 23, 42, 0.85);
  font-weight: 1000;
}

.u-item[open] summary::after {
  content: "–";
}

.u-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.u-item summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}
.tabs .tab a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
@media (max-width: 900px) {
  .burger {
    display: flex;
    position: relative;
    z-index: 200;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;

    width: min(72vw, 280px);

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;

    transform: translateX(110%);
    transition: transform 0.35s ease;

    z-index: 150;

    border-left: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.25);

    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    color: var(--ink);
    font-weight: 950;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .topbar .btn.primary {
    display: none;
  }

  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
  }

  .nav.open::before {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
    position: relative;
    z-index: 200;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;

    width: min(72vw, 280px);

    background: linear-gradient(180deg, var(--steel-2) 0%, var(--steel) 100%);

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;

    transform: translateX(110%);
    transition: transform 0.35s ease;

    z-index: 150;

    border-left: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.25);

    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    color: rgba(226, 232, 240, 0.95);
    font-weight: 950;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
  }

  .topbar .btn.primary {
    display: none;
  }

  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
  }

  .nav.open::before {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 900px) {
  .burger span {
    background: #0b1220;
  }

  .burger.open span {
    background: #fff;
  }
}

.hero > * {
  min-width: 0;
}
.hero-right img {
  max-width: 100%;
  height: auto;
}
a.text-link {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(2, 6, 23, 0.22);
  padding-bottom: 2px;
}
a.text-link:hover {
  border-bottom-color: rgba(2, 6, 23, 0.55);
}
