:root {
  --navy: #1b2559;
  --ink: #1a2340;
  --muted: #4a5573;
  --blue: #2563eb;
  --violet: #6f38f9;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #e4ebf5;
  --grad: linear-gradient(135deg, #2563eb, #6f38f9);
  --font: "Poppins", "Segoe UI", sans-serif;
  --max: 1120px;
  --header: 7.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 80;
  width: auto;
  height: auto;
  clip: auto;
  padding: 8px 12px;
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lead,
.intro,
.band p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.intro {
  max-width: 46rem;
  margin: 12px 0 0;
}

.punch {
  margin-top: 1rem !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-secondary,
.btn-ghost {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-1px);
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
}

.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
  background: var(--grad);
}

.announce span {
  flex: 0 0 auto;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
}

.nav-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none !important;
}

.brand-jreg,
.brand-fusion {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: auto;
}

.brand-jreg img {
  height: 36px;
}

.brand-fusion img {
  height: 34px;
}

.brand b,
.brand i,
.brand small {
  display: block;
  line-height: 1;
}

.brand b {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.brand i {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.brand small {
  margin-top: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b6788;
}

.brand-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.links a:hover {
  color: var(--blue);
}

.menu-check {
  display: none;
}

.menu-btn {
  display: none;
  cursor: pointer;
}

.btn:focus-visible,
.links a:focus-visible,
.contact-line a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 56, 249, 0.12), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(37, 99, 235, 0.12), transparent 32%),
    linear-gradient(180deg, #eef4ff 0%, var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

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

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.trust li {
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}

.trust b {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
}

.trust span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.band {
  padding: 72px 0;
}

.band-alt {
  background: #fff;
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}

.split > div p {
  margin: 0 0 12px;
  font-size: 1.02rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.steps b {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  background: var(--grad);
}

.steps strong {
  display: block;
  color: var(--navy);
}

.steps span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.gains li {
  position: relative;
  padding: 20px 20px 20px 52px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.gains li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L19 7'/></svg>")
    center / 12px 12px no-repeat;
}

.gains h3 {
  margin-bottom: 8px;
}

.gains p {
  margin: 0;
  font-size: 0.94rem;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.tiles li {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.tile {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #1d4ed8;
  background: #eaf0ff;
}

.tile svg {
  width: 22px;
  height: 22px;
}

.tile-red {
  color: #e11d48;
  background: #fde8ee;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.audience li {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.aud-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #eaf0ff;
}

.aud-icon svg {
  width: 20px;
  height: 20px;
}

.audience h3 {
  margin-bottom: 6px;
}

.audience p {
  margin: 0;
  font-size: 0.94rem;
}

.quote-band {
  padding: 56px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #071133 0%, #102056 55%, #1d3a8a 100%);
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.quote-sub {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.contact-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b6788;
}

.contact-name {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-line {
  display: grid;
  gap: 2px;
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-line a {
  font-weight: 700;
  color: var(--navy);
}

.qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.qr img {
  width: 72px;
  height: 72px;
}

.qr b {
  display: block;
  color: var(--navy);
}

.contact-card .btn {
  margin-top: 8px;
}

.footer {
  color: #fff;
  background: linear-gradient(90deg, #071133 0%, #102056 55%, #1d3a8a 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand strong,
.footer-brand span {
  display: block;
  line-height: 1;
}

.footer-brand strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-brand span {
  margin-top: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-brand em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p,
.footer-copy,
.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.footer-copy b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .gains,
  .cards,
  .audience,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tiles {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .hero-media {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }

  .brand-fusion small,
  .brand-divider,
  .brand-jreg {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
      linear-gradient(#1b2559, #1b2559) center 14px / 18px 2px no-repeat,
      linear-gradient(#1b2559, #1b2559) center 20px / 18px 2px no-repeat,
      linear-gradient(#1b2559, #1b2559) center 26px / 18px 2px no-repeat;
  }

  .links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(27, 37, 89, 0.1);
    z-index: 30;
  }

  .links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-check:checked ~ .links {
    display: flex;
  }

  .top {
    position: sticky;
  }

  .nav {
    position: relative;
  }
}

@media (max-width: 640px) {
  .announce {
    flex-direction: column;
    gap: 4px;
  }

  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
