:root {
  --ink: #08111f;
  --ink-2: #101b2f;
  --muted: #637083;
  --line: #dfe7f1;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #1769ff;
  --blue-2: #0a4fd0;
  --cyan: #22c3e6;
  --green: #19b98a;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 36px));
  margin: 16px auto -88px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.68);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  font-weight: 850;
}

.brand img {
  width: 54px;
  height: 38px;
  border-radius: 7px;
  object-fit: contain;
  background: #fff;
}

.brand span {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.nav-cta {
  padding: 10px 16px !important;
  border-radius: 8px;
  color: #08111f;
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #08111f;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero-bg img:nth-child(2) {
  animation-delay: 6s;
}

.hero-bg img:nth-child(3) {
  animation-delay: 12s;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.94) 0%, rgba(8, 17, 31, 0.72) 48%, rgba(8, 17, 31, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 17, 31, 0.86) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 58px;
  align-items: end;
  width: min(1220px, calc(100% - 36px));
  min-height: 760px;
  margin: 0 auto;
  padding: 170px 0 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #79d8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.5vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(23, 105, 255, 0.3);
}

.button-primary:hover {
  background: var(--blue-2);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #dff8ff;
  font-weight: 800;
}

.live-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(25, 185, 138, 0.14);
}

.hero-metrics {
  display: grid;
  gap: 12px;
}

.hero-metrics div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics strong {
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 118px;
  margin-top: 16px;
}

.mini-chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #7ee7ff, var(--blue));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  width: min(1220px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip span {
  padding: 22px 14px;
  color: #334155;
  background: #fff;
  font-weight: 850;
  text-align: center;
}

.section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 98px 0;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 70px;
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  min-height: 460px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -28px;
  bottom: 28px;
  width: min(320px, 82%);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(8, 17, 31, 0.24);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 6px;
  color: #cbd5e1;
}

.section-copy p,
.section-heading p,
.publisher-layout p,
.compliance p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.compliance .eyebrow,
.contact .eyebrow {
  color: var(--blue);
  font-size: 13px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.check-grid span {
  position: relative;
  padding: 15px 15px 15px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #243247;
  background: var(--soft);
  font-weight: 800;
}

.check-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

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

.solution-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.solution-card > span,
.solution-card div > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--blue);
  background: #e9f1ff;
  font-weight: 900;
}

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

.image-card {
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.image-card div {
  padding: 24px;
}

.wide-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
}

.wide-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.9), rgba(8, 17, 31, 0.42));
}

.wide-content {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.wide-content h2 {
  max-width: 820px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 980px;
  margin-top: 32px;
}

.process-row div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.process-row strong,
.process-row span {
  display: block;
}

.process-row strong {
  color: #79d8ff;
  font-size: 28px;
}

.process-row span {
  margin-top: 8px;
  font-weight: 850;
}

.publisher-section {
  padding-bottom: 44px;
}

.publisher-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.publisher-layout article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-card {
  padding: 28px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.proof-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 40px;
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  font-weight: 800;
}

.compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 60px;
  border-top: 1px solid var(--line);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.compliance-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: start;
  padding: 64px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 17, 31, 0.94), rgba(8, 17, 31, 0.74)),
    url("images/333.png") center/cover;
}

.contact h2,
.contact-copy p,
.contact-lines a {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(23, 105, 255, 0.14);
  border-color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  width: min(1220px, calc(100% - 36px));
  margin: 80px auto 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  color: var(--ink);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #40506a;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px !important;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 64px auto;
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

@keyframes heroFade {
  0%,
  27% {
    opacity: 1;
    transform: scale(1);
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    color: #fff;
    background: var(--blue);
    text-align: center;
  }

  .hero-inner,
  .image-split,
  .compliance,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .trust-strip,
  .solution-grid,
  .publisher-layout,
  .proof,
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-note {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-inner,
  .section,
  .trust-strip,
  .wide-content,
  .site-footer,
  .legal-page {
    width: min(100% - 24px, 1220px);
  }

  .site-header {
    margin-top: 12px;
  }

  .brand img {
    width: 46px;
    height: 34px;
  }

  .brand span {
    font-size: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 830px;
  }

  .hero-inner {
    padding-top: 132px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .solution-grid,
  .publisher-layout,
  .proof,
  .process-row,
  .check-grid,
  .compliance-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    min-height: 320px;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .wide-visual {
    min-height: 650px;
  }

  .contact {
    padding: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
