:root {
  --paper: #f4f1e8;
  --surface: #fffdf8;
  --ink: #121923;
  --navy: #101d31;
  --blue: #2457e6;
  --blue-dark: #183ca8;
  --sky: #e8edff;
  --muted: #616974;
  --line: #d2cdc1;
  --green: #1f7554;
  --max: 1220px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(18, 25, 35, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 241, 232, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 850;
  font-size: 22px;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  grid-template-columns: 20px 20px;
  grid-template-rows: 16px 16px;
  gap: 3px;
  width: 43px;
}
.brand-mark i {
  display: block;
  background: var(--ink);
}
.brand-mark i:nth-child(1) {
  clip-path: polygon(0 0, 78% 0, 100% 24%, 100% 100%, 0 100%);
}
.brand-mark i:nth-child(2) {
  grid-column: 2;
  grid-row: 1/3;
  clip-path: polygon(0 0, 72% 0, 100% 16%, 100% 84%, 72% 100%, 0 100%);
}
.brand-mark i:nth-child(3) {
  clip-path: polygon(0 0, 100% 0, 100% 76%, 78% 100%, 0 100%);
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 650;
}
.nav-links a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--blue);
}
.nav-cta {
  background: var(--ink);
  color: white !important;
  border: 1px solid var(--ink) !important;
  padding: 11px 18px !important;
}
.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue) !important;
}
.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.menu-button span,
.menu-button span:before,
.menu-button span:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-button span:before {
  position: absolute;
  top: -6px;
}
.menu-button span:after {
  position: absolute;
  top: 6px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero {
  padding: 88px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: clamp(55px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero .lead,
.page-hero .lead {
  font-size: 22px;
  line-height: 1.48;
  color: #3f4750;
  max-width: 700px;
  margin: 28px 0 0;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--ink);
  font-weight: 800;
  transition: 0.18s ease;
}
.button.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.button.primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
}
.button.secondary:hover {
  background: var(--ink);
  color: white;
}
.button.light {
  background: white;
  color: var(--blue);
  border-color: white;
}
.button.light:hover {
  background: var(--sky);
}
.hero-system {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}
.system-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.system-head span {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  padding: 6px 9px;
}
.system-flow {
  display: grid;
  gap: 10px;
  padding: 22px 0;
}
.flow-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
}
.flow-row b {
  color: var(--blue);
}
.flow-row small {
  color: var(--muted);
}
.flow-status {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.system-result {
  background: var(--navy);
  color: white;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.system-result span {
  color: #bfc9df;
}
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.trust-item span {
  font-size: 13px;
  color: var(--muted);
}
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 48px;
}
.section-heading h2 {
  margin: 0;
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 720px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.solution-card {
  min-height: 360px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.solution-card:hover {
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(18, 25, 35, 0.08);
  transform: translateY(-3px);
}
.card-no {
  font-size: 12px;
  color: var(--blue);
  font-weight: 850;
  letter-spacing: 0.14em;
}
.card-status {
  align-self: flex-start;
  margin-top: 16px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.solution-card h3 {
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  margin: auto 0 15px;
  letter-spacing: -0.045em;
}
.solution-card p {
  margin: 0 0 24px;
  color: var(--muted);
}
.text-link {
  color: var(--blue);
  font-weight: 800;
  margin-top: auto;
}
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.tag {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 6px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--muted);
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.product-card h3 {
  font-size: 38px;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 12px 0;
}
.product-card p {
  color: var(--muted);
  margin: 0;
}
.product-card .arrow-box {
  width: 58px;
  height: 58px;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 26px;
}
.product-card:hover .arrow-box {
  background: var(--blue);
  color: white;
}
.dark-section {
  background: var(--navy);
  color: white;
  padding: 96px 0;
}
.dark-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.dark-section .eyebrow {
  color: #8aa6ff;
}
.dark-section h2 {
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
}
.dark-section .lead {
  font-size: 20px;
  color: #c5cfdf;
}
.service-list {
  border-top: 1px solid #3a465a;
}
.service-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #3a465a;
}
.service-row b {
  color: #8aa6ff;
}
.service-row span {
  color: #d7dfec;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}
.portrait {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 12px;
  position: relative;
}
.portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.78) contrast(1.04);
}
.portrait-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: rgba(16, 29, 49, 0.92);
  color: white;
  padding: 15px;
}
.portrait-label b {
  display: block;
}
.portrait-label span {
  font-size: 13px;
  color: #c5cfdf;
}
.about-copy h2 {
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
}
.about-copy .lead {
  font-size: 21px;
  color: #424a54;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.proof {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 17px;
}
.proof b {
  display: block;
  color: var(--blue);
}
.proof span {
  font-size: 14px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px;
  min-height: 230px;
}
.step b {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.step h3 {
  font-size: 25px;
  line-height: 1.05;
  margin: 54px 0 12px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.cta-section {
  background: var(--blue);
  color: white;
  padding: 80px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.cta-grid h2 {
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
}
.cta-grid p {
  font-size: 19px;
  color: #dce5ff;
  margin: 0 0 24px;
}
.page-hero {
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
}
.page-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}
.preview-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  font-weight: 850;
}
.preview-title span {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.preview-body {
  min-height: 300px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  padding: 24px;
  display: grid;
  gap: 10px;
}
.preview-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  padding: 15px;
}
.preview-card b {
  display: block;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.preview-line {
  height: 8px;
  background: #d5d0c6;
  margin-top: 10px;
}
.preview-line.blue {
  background: var(--blue);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 12px;
}
.metric {
  background: white;
  border: 1px solid var(--line);
  padding: 13px;
}
.metric b {
  display: block;
  color: var(--blue);
  font-size: 24px;
}
.metric small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 27px;
  min-height: 230px;
}
.feature b {
  color: var(--blue);
  font-size: 12px;
}
.feature h3 {
  font-size: 27px;
  line-height: 1.08;
  margin: 46px 0 12px;
}
.feature p {
  color: var(--muted);
  margin: 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
}
.offer.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 20px 45px rgba(36, 87, 230, 0.12);
}
.offer h3 {
  font-size: 30px;
  margin: 8px 0;
}
.offer p {
  color: var(--muted);
}
.offer ul {
  padding-left: 20px;
}
.offer li {
  margin: 8px 0;
}
.offer .button {
  margin-top: auto;
}
.privacy-box {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.privacy-item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 17px;
}
.privacy-item b {
  display: block;
}
.privacy-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0 0;
}
.legal {
  padding: 70px 0 100px;
}
.legal h1 {
  font-family: "Arial Narrow", Inter, Arial, sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}
.legal-content {
  max-width: 850px;
}
.legal-content h2 {
  font-size: 28px;
  margin: 44px 0 14px;
}
.legal-content p,
.legal-content ul {
  color: #3f4750;
}
.legal-note {
  border-left: 4px solid var(--blue);
  background: var(--surface);
  padding: 16px 20px;
  color: var(--muted);
}
.address {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
}
.footer {
  background: #0c1524;
  color: #dbe2ed;
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.95fr;
  gap: 50px;
}
.footer .brand {
  color: white;
}
.footer p {
  color: #9faabd;
  max-width: 400px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col b {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  color: #8190a8;
  margin-bottom: 9px;
}
.footer-col a:hover {
  color: #8aa6ff;
}
.footer-bottom {
  border-top: 1px solid #293448;
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #8190a8;
  font-size: 12px;
}
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.contact-option {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: white;
  color: var(--ink);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: 0.18s ease;
}
.contact-option:hover {
  background: var(--sky);
  transform: translateY(-2px);
}
.contact-option small {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 850;
  color: var(--blue);
}
.contact-option strong {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.availability {
  margin-top: 22px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  padding: 14px 17px;
  max-width: 720px;
}
.availability b {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 3px;
}
.availability span {
  color: var(--muted);
  font-size: 15px;
}
.legal-content a {
  text-decoration: underline;
  text-decoration-color: rgba(36, 87, 230, 0.35);
  text-underline-offset: 3px;
}
.legal-content a:hover {
  color: var(--blue);
}
:focus-visible {
  outline: 3px solid rgba(36, 87, 230, 0.3);
  outline-offset: 3px;
}
@media (max-width: 980px) {
  .nav-links {
    gap: 18px;
  }
  .hero-grid,
  .page-hero-grid,
  .dark-grid,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section-heading {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .feature-grid,
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .hero-system {
    max-width: 700px;
  }
  .about-grid {
    max-width: 820px;
  }
  .portrait {
    max-width: 420px;
  }
}
@media (max-width: 900px) {
  .menu-button {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 81px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 14px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 5px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: min(calc(100% - 30px), var(--max));
  }
  .header-row {
    height: 72px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    transform: scale(0.85);
    transform-origin: left center;
    margin-right: -4px;
  }
  .menu-button {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 71px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 14px 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 5px;
  }
  .hero,
  .page-hero {
    padding: 54px 0;
  }
  .hero-grid,
  .page-hero-grid {
    gap: 40px;
  }
  .hero .lead,
  .page-hero .lead {
    font-size: 19px;
  }
  .actions .button {
    width: 100%;
  }
  .contact-options,
  .trust-grid,
  .card-grid,
  .feature-grid,
  .offer-grid,
  .product-row,
  .steps,
  .privacy-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    gap: 12px;
    margin-bottom: 35px;
  }
  .solution-card {
    min-height: 290px;
  }
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-card .arrow-box {
    width: 50px;
    height: 50px;
  }
  .dark-section {
    padding: 72px 0;
  }
  .dark-grid {
    gap: 45px;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .preview-body {
    min-height: 260px;
  }
  .offer {
    min-height: 0;
  }
  .step {
    min-height: 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-top: 45px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
