:root {
  --navy: #032758;
  --navy-soft: #174276;
  --teal: #05bba0;
  --teal-light: #dff8f3;
  --ink: #13283d;
  --muted: #617486;
  --line: rgba(3, 39, 88, 0.12);
  --paper: #ffffff;
  --wash: #f5f9fb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--wash);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(5, 187, 160, 0.09), transparent 27rem),
    radial-gradient(circle at 88% 85%, rgba(3, 39, 88, 0.07), transparent 31rem),
    linear-gradient(145deg, #ffffff 0%, #f5f9fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(3, 39, 88, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 39, 88, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1040px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 0 30px;
}

.hero {
  width: 100%;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 26px 80px rgba(3, 39, 88, 0.10),
    0 4px 16px rgba(3, 39, 88, 0.05);
  backdrop-filter: blur(12px);
}

.brand-panel {
  width: min(100%, 680px);
  margin: 0 auto;
}

.verisacta-logo,
.salespro-logo {
  display: block;
  width: 100%;
  height: auto;
}

.verisacta-logo {
  border-radius: 4px;
}

h1 {
  margin: clamp(30px, 5vw, 48px) 0 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3.8vw, 2.65rem);
  font-weight: 650;
  letter-spacing: 0.045em;
  line-height: 1.18;
}

.intro {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.rule {
  width: 74px;
  height: 3px;
  margin: clamp(35px, 6vw, 52px) auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
}

.product-panel {
  width: min(100%, 690px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(3, 39, 88, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(223, 248, 243, 0.48), rgba(255, 255, 255, 0.88));
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--navy-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.salespro-logo {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 4px;
}

.product-copy {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(32px, 5vw, 46px);
  padding: 11px 16px;
  border: 1px solid rgba(5, 187, 160, 0.24);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(223, 248, 243, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(5, 187, 160, 0.12);
}

footer {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: #7d8d9c;
  font-size: 0.76rem;
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 20px, 1040px);
    padding: 20px 0 18px;
  }

  .hero {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .brand-panel {
    width: 96%;
  }

  h1 {
    letter-spacing: 0.025em;
  }

  .product-panel {
    padding: 24px 16px;
  }

  .status {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: enter 700ms ease-out both;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
