:root {
  --cyan: #08a4dc;
  --cyan2: #4bd1f5;
  --navy: #0a151e;
  --ink: #17212a;
  --muted: #667681;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f5f8fa;
  color: var(--ink);
  font-family: Inter, 'Segoe UI', Arial, sans-serif;
}
.topbar {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 76px);
  background: #20252a;
  color: #aebbc4;
  font-size: 12px;
}
.topbar nav {
  display: flex;
  align-items: center;
  gap: 23px;
}
.topbar a {
  color: #c4ced4;
  text-decoration: none;
}
.topbar strong {
  color: #70d4af;
}
.header {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(22px, 5vw, 76px);
  background: #fff;
  border-bottom: 1px solid #e5ebef;
  box-shadow: 0 7px 28px #142b3a0a;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #667681;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 238px;
  max-height: 62px;
  object-fit: contain;
}
.brand small {
  padding-left: 15px;
  border-left: 1px solid #dfe6ea;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  color: #3f4d57;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: #078cbe;
}
.access-actions {
  display: flex;
  gap: 8px;
}
.private {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.client-access {
  background: linear-gradient(135deg, #09a7df, #087dab);
  box-shadow: 0 10px 24px #079bd329;
}
.staff-access {
  border: 1px solid #cbd9e1;
  background: #f4f8fa;
  color: #314650;
}
.staff-link {
  color: #9fdff1;
  font-size: 13px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  padding: 82px clamp(22px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.68fr);
  align-items: center;
  gap: 70px;
  color: #fff;
  background:
    radial-gradient(circle at 68% 22%, #0b8cc13a, transparent 24%),
    linear-gradient(118deg, #091018 0%, #102231 58%, #073e59 100%);
}
.grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(#7cd5f61c 1px, transparent 1px),
    linear-gradient(90deg, #7cd5f61c 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-copy {
  max-width: 820px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #66d7fa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.eyebrow i,
.status-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #36d79b;
  box-shadow: 0 0 0 7px #36d79b16;
}
.hero h1 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan2);
}
.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #c0d0da;
  font-size: 19px;
  line-height: 1.7;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.actions a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.primary {
  background: linear-gradient(135deg, #0db2e7, #0787bb);
  box-shadow: 0 15px 35px #009dd43b;
  color: #fff;
}
.primary span {
  font-size: 22px;
}
.secondary {
  border: 1px solid #ffffff24;
  background: #ffffff0b;
  color: #fff;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: #aebfca;
  font-size: 14px;
}
.trust span::first-letter {
  color: #47d9a3;
}
.status {
  padding: 25px;
  border: 1px solid #ffffff1c;
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff13, #ffffff07);
  box-shadow: 0 34px 80px #0006;
  backdrop-filter: blur(18px);
}
.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid #ffffff16;
  color: #74dafa;
}
.status-head b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.status-main {
  display: flex;
  gap: 16px;
  padding: 26px 0;
}
.shield {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  height: 58px;
  border-radius: 17px;
  color: #70e0ba;
  background: #37d79f17;
  font-size: 30px;
}
.status-main small {
  color: #86a0b0;
}
.status-main h2 {
  margin: 5px 0;
  font-size: 20px;
}
.status-main p {
  margin: 0;
  color: #aebfca;
  font-size: 14px;
  line-height: 1.5;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.status-grid div {
  display: grid;
  gap: 5px;
  padding: 14px 11px;
  border-radius: 14px;
  background: #ffffff0b;
}
.status-grid span {
  color: #4dccf4;
  font-size: 18px;
}
.status-grid small {
  color: #8fa4b2;
  font-size: 11px;
}
.status-grid b {
  font-size: 13px;
}
.ticket {
  margin-top: 12px;
  padding: 17px;
  border-radius: 16px;
  background: #08131d99;
  border: 1px solid #ffffff12;
}
.ticket > small {
  color: #70d9f9;
  letter-spacing: 0.08em;
}
.ticket p {
  margin: 12px 0 7px;
}
.ticket > span {
  color: #879da9;
  font-size: 12px;
}
.steps {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 20px clamp(22px, 6vw, 90px);
  background: #fff;
  border-bottom: 1px solid #e1e8ec;
}
.steps div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.steps b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e9f7fc;
  color: #087eac;
}
.steps span {
  font-size: 14px;
  font-weight: 700;
}
.steps > i {
  color: #afbdc5;
}
.services {
  padding: 90px clamp(22px, 7vw, 112px);
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-title p,
.security > div > p {
  margin: 0 0 12px;
  color: #0795ca;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
.section-title h2,
.security h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.section-title > span {
  max-width: 360px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.cards article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid #dfe8ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px #1835460a;
  transition: 0.2s;
}
.cards article:hover {
  transform: translateY(-3px);
  border-color: #b8ddeb;
  box-shadow: 0 18px 40px #18354614;
}
.cards article > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #078ab9;
  background: #eaf7fc;
  font-size: 22px;
  font-style: normal;
}
.cards h3 {
  margin: 23px 0 10px;
  font-size: 18px;
}
.cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 0 clamp(22px, 7vw, 112px) 90px;
  padding: 64px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(125deg, #0d1822, #142c3d);
}
.security > div > span {
  display: block;
  margin-top: 20px;
  color: #b3c5d0;
  font-size: 17px;
  line-height: 1.7;
}
.security ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.security li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid #ffffff12;
  border-radius: 16px;
  background: #ffffff08;
}
.security li > b {
  color: #50d6a6;
}
.security li span {
  display: grid;
}
.security li small {
  margin-top: 4px;
  color: #9fb3bf;
  line-height: 1.45;
}
footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px clamp(22px, 5vw, 76px);
  background: #fff;
  border-top: 1px solid #e0e8ec;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-brand img {
  width: 190px;
}
.footer-brand small {
  padding-left: 15px;
  border-left: 1px solid #dfe6ea;
  color: #70808a;
}
footer p {
  color: #7a8993;
  font-size: 13px;
}
footer > div:last-child {
  display: flex;
  gap: 20px;
}
footer a {
  color: #52626d;
  font-size: 13px;
  text-decoration: none;
}
@media (max-width: 1180px) {
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4) {
    display: none;
  }
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .status {
    max-width: 720px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .security {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 760px) {
  .topbar,
  .main-nav {
    display: none;
  }
  .header {
    height: 78px;
    padding: 0 18px;
  }
  .brand img {
    width: 180px;
  }
  .brand small {
    display: none;
  }
  .access-actions {
    margin-left: auto;
  }
  .private {
    padding: 0 14px;
  }
  .staff-access {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 64px 22px;
    gap: 45px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 17px;
  }
  .actions {
    display: grid;
  }
  .actions a {
    justify-content: center;
  }
  .trust {
    display: grid;
    gap: 10px;
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .steps > i {
    display: none;
  }
  .section-title {
    align-items: start;
    flex-direction: column;
  }
  .services {
    padding: 68px 20px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .security {
    margin: 0 18px 65px;
    padding: 34px 24px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  footer > div:last-child {
    flex-wrap: wrap;
  }
}
@media (max-width: 430px) {
  .header .brand img {
    width: 150px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }
  .status {
    padding: 18px;
  }
  .section-title h2,
  .security h2 {
    font-size: 32px;
  }
  .footer-brand small {
    display: none;
  }
}
