:root {
  color-scheme: light;
  --bg: #f4f7f9;
  --ink: #111a22;
  --muted: #62717d;
  --line: #d7e1e8;
  --surface: #ffffff;
  --blue: #245d90;
  --blue-dark: #102f4d;
  --green: #126338;
  --amber: #a86c16;
  --shadow: 0 18px 44px rgba(16, 47, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.gear-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.gear {
  position: absolute;
  width: var(--size);
  height: var(--size);
  opacity: var(--opacity);
  filter: drop-shadow(0 12px 24px rgba(16, 47, 77, 0.14));
  animation: drift var(--drift) linear infinite;
}

.gear::before,
.gear::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.gear::before {
  background:
    radial-gradient(circle at center, transparent 0 27%, rgba(36, 93, 144, 0.18) 28% 39%, transparent 40%),
    repeating-conic-gradient(from 0deg, rgba(36, 93, 144, 0.22) 0deg 13deg, transparent 13deg 24deg);
  animation: spin var(--spin) linear infinite;
}

.gear::after {
  inset: 23%;
  border: 2px solid rgba(36, 93, 144, 0.16);
}

.gear-a {
  --size: 210px;
  --opacity: 0.36;
  --drift: 42s;
  --spin: 18s;
  left: -90px;
  top: 18vh;
}

.gear-b {
  --size: 148px;
  --opacity: 0.28;
  --drift: 54s;
  --spin: 14s;
  left: 78vw;
  top: 9vh;
  animation-delay: -18s;
}

.gear-c {
  --size: 110px;
  --opacity: 0.22;
  --drift: 48s;
  --spin: 22s;
  left: 46vw;
  top: 72vh;
  animation-delay: -9s;
}

.gear-d {
  --size: 180px;
  --opacity: 0.2;
  --drift: 66s;
  --spin: 26s;
  left: 92vw;
  top: 56vh;
  animation-delay: -30s;
}

.gear-e {
  --size: 92px;
  --opacity: 0.24;
  --drift: 38s;
  --spin: 11s;
  left: 14vw;
  top: 84vh;
  animation-delay: -24s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(52px, -28px, 0);
  }
  50% {
    transform: translate3d(118px, 24px, 0);
  }
  75% {
    transform: translate3d(44px, 58px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(215, 225, 232, 0.88);
  background: rgba(244, 247, 249, 0.92);
  backdrop-filter: blur(12px);
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-dark);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
  background: #fff;
}

.language-toggle button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.language-toggle button.active {
  color: #fff;
  background: var(--blue-dark);
}

.hero,
.section,
.split-section,
.contact {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: 42px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.4px;
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

h3 {
  font-size: 19px;
}

.lead,
.split-section p,
.contact p {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.56;
}

.contact .contact-email {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 800;
}

.contact-email a {
  color: var(--blue-dark);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.primary {
  color: #fff;
  background: var(--green);
}

.secondary {
  color: var(--blue-dark);
  border: 1px solid var(--line);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.product-shot {
  overflow: hidden;
  border: 1px solid #cbd9e3;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6fbff);
  box-shadow: var(--shadow);
}

.shot-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #0f2d49;
  color: #fff;
}

.shot-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #2bd36f;
}

.shot-top small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.search-card {
  margin: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.search-card label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
}

.search-line span,
.search-line b {
  border-radius: 8px;
  padding: 12px;
}

.search-line span {
  border: 1px solid var(--line);
  background: #fff;
}

.search-line b {
  color: #fff;
  background: var(--blue);
}

.search-card p {
  margin-top: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 14px 14px;
}

.result-grid div {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.result-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.result-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

.pill {
  width: max-content;
  border-radius: 999px;
  padding: 5px 11px;
  color: #fff;
  font-size: 16px !important;
}

.yellow {
  background: var(--amber);
}

.watch-list {
  display: grid;
  gap: 8px;
  padding: 0 14px 16px;
}

.watch-list span {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, #edf4f9, #fff);
}

.section,
.split-section,
.contact {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 26px;
}

.feature-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-grid article,
.security-grid p,
.benefit-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(16, 47, 77, 0.06);
}

.feature-grid article span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid article h3 {
  margin-top: 14px;
}

.feature-grid article p,
.security-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 36px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-list {
  display: grid;
  gap: 10px;
}

.benefit-list strong {
  display: block;
  font-size: 28px;
}

.benefit-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

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

.security-grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal {
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  gap: 10px;
}

.legal details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(16, 47, 77, 0.05);
}

.legal summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-dark);
  font-weight: 900;
}

.legal-copy {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.58;
}

.legal-copy a {
  color: var(--blue-dark);
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 26px 20px 34px;
  border-top: 1px solid #0d1e30;
  background: #06111d;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

footer strong {
  color: #fff;
}

.footer-links {
  display: inline-flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

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

@media (max-width: 900px) {
  .site-header,
  .contact,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a,
  .site-header .nav-cta {
    width: 100%;
    padding: 11px 12px;
  }

  .language-toggle {
    width: max-content;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 34px;
    letter-spacing: 0;
  }

  h2 {
    font-size: 28px;
  }

  .lead,
  .split-section p,
  .contact p {
    font-size: 16px;
  }

  .product-shot {
    width: 100%;
  }

  .search-line {
    grid-template-columns: 1fr;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
  }
}
