@font-face {
  font-display: swap;
  font-family: "Now";
  font-style: normal;
  font-weight: 100;
  src: url("assets/fonts/Now-Thin.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Now";
  font-style: normal;
  font-weight: 300;
  src: url("assets/fonts/Now-Light.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Now";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Now-Regular.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Now";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/Now-Medium.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Now";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/Now-Bold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Now";
  font-style: normal;
  font-weight: 900;
  src: url("assets/fonts/Now-Black.otf") format("opentype");
}

:root {
  --navy: #29336f;
  --navy-deep: #151b44;
  --red: #ff1515;
  --coral: #ff6b63;
  --sky: #eaf5ff;
  --lavender: #f2f0ff;
  --mist: #f8f9fc;
  --ink: #111827;
  --muted: #667085;
  --line: #e3e7ef;
  --white: #ffffff;
  --font-sans: "Now", "Aptos", "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --shadow: 0 34px 90px rgba(34, 43, 92, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  margin: 0;
}

body::before {
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 21, 21, 0.1), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(41, 51, 111, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 50%, #ffffff 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand-name {
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.15;
  max-width: 210px;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(227, 231, 239, 0.9);
  border-radius: 999px;
  display: flex;
  gap: 26px;
  justify-content: space-between;
  left: 50%;
  max-width: 1180px;
  padding: 12px 14px 12px 22px;
  position: fixed;
  top: 20px;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  z-index: 30;
}

.brand img {
  height: auto;
  width: 128px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-header nav a,
.menu-toggle {
  border-radius: 999px;
  color: #2f365c;
  font-size: 0.92rem;
  font-weight: 760;
  padding: 12px 15px;
}

.site-header nav a:hover {
  background: var(--sky);
}

.site-header nav a.active {
  background: var(--sky);
  color: var(--navy);
}

.nav-cta,
.button.primary {
  background: var(--red);
  color: var(--white) !important;
}

.menu-toggle {
  background: var(--navy);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 4vw, 74px);
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  min-height: 100vh;
  padding: 148px clamp(22px, 5vw, 76px) 70px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.company-line {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
  margin: 0 0 10px;
}

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

h1 {
  color: var(--navy-deep);
  font-size: clamp(3.9rem, 5.2vw, 6.2rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 32px;
}

h2 {
  color: var(--navy-deep);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 22px;
}

h3 {
  color: var(--navy-deep);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lede,
.section-kicker > p:not(.eyebrow),
.ai-copy p:not(.eyebrow),
.product-copy > p,
.contact-card > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions,
.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
}

.button.secondary {
  background: var(--navy);
  color: var(--white);
}

.hero-visual {
  margin: 0;
  position: relative;
}

.hero-visual::before {
  background: var(--red);
  border-radius: 999px;
  content: "";
  height: 78%;
  left: -18px;
  opacity: 0.85;
  position: absolute;
  top: 10%;
  transform: rotate(-5deg);
  width: 54px;
  z-index: -1;
}

.hero-visual img,
.product-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.signal-strip span {
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  font-weight: 850;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  text-align: center;
}

.signal-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(82px, 10vw, 150px) clamp(22px, 5vw, 76px);
}

.section-kicker {
  display: grid;
  gap: 8px;
  max-width: 950px;
}

.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
}

.service-tile,
.managed-card,
.proof-list article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 360px;
  padding: 30px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-tile:hover,
.managed-card:hover,
.proof-list article:hover {
  border-color: rgba(255, 21, 21, 0.22);
  box-shadow: 0 24px 70px rgba(41, 51, 111, 0.11);
  transform: translateY(-6px);
}

.service-tile,
.managed-card {
  color: inherit;
  display: block;
}

.service-tile span {
  color: var(--red);
  display: block;
  font-size: 3rem;
  font-weight: 920;
  letter-spacing: -0.05em;
  margin-bottom: 88px;
}

.service-tile p,
.managed-card p,
.proof-list p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

.ai-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(41, 51, 111, 0.96), rgba(21, 27, 68, 0.98)),
    var(--navy);
  color: var(--white);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  margin: 0 clamp(22px, 5vw, 76px);
  overflow: hidden;
  padding-left: clamp(30px, 6vw, 82px);
  padding-right: clamp(30px, 6vw, 82px);
  position: relative;
}

.ai-section::after {
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 21, 21, 0.9) 0 12px,
    transparent 12px 26px
  );
  content: "";
  height: 240px;
  opacity: 0.3;
  position: absolute;
  right: -40px;
  top: -60px;
  transform: rotate(11deg);
  width: 170px;
}

.ai-section h2,
.ai-section .eyebrow,
.contact-section h2 {
  color: var(--white);
}

.ai-copy p:not(.eyebrow) {
  color: #d8ddf7;
}

.ai-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.ai-cards span,
.product-points span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  color: var(--white);
  font-weight: 760;
  min-height: 84px;
  padding: 20px;
}

.assessera-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 74px);
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
}

.product-copy {
  max-width: 650px;
}

.product-points span {
  background: var(--lavender);
  border-color: #ded9ff;
  color: var(--navy);
  min-height: auto;
  padding: 13px 16px;
}

.product-copy .button {
  margin-top: 28px;
}

.product-visual {
  margin: 0;
}

.assessera-motion {
  align-items: center;
  display: grid;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.assessera-motion::before {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 21, 21, 0.16), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(41, 51, 111, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #f7f9ff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  content: "";
  inset: 32px 0;
  position: absolute;
  z-index: -3;
}

.assessera-motion img {
  max-width: min(92%, 720px);
  position: relative;
  z-index: 2;
}

.motion-ribbon {
  left: -12%;
  overflow: hidden;
  position: absolute;
  right: -12%;
  white-space: nowrap;
  z-index: -1;
}

.motion-ribbon-left {
  top: 18%;
  transform: rotate(-2.5deg);
}

.motion-ribbon-right {
  bottom: 17%;
  transform: rotate(2.5deg);
}

.motion-track {
  animation: ribbon-scroll 34s linear infinite;
  display: inline-flex;
  gap: 18px;
  min-width: max-content;
  will-change: transform;
}

.motion-ribbon-right .motion-track {
  animation-direction: reverse;
}

.motion-track span {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(41, 51, 111, 0.14);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(41, 51, 111, 0.08);
  color: var(--navy);
  display: inline-flex;
  font-size: clamp(1.45rem, 2.7vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  padding: 20px 28px;
}

@keyframes ribbon-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.managed-section,
.proof-section {
  background: var(--mist);
}

.managed-grid,
.proof-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
}

.managed-card {
  min-height: 260px;
}

.proof-section {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
}

.proof-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.proof-list article {
  min-height: 210px;
}

.proof-list strong {
  color: var(--red);
  display: block;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 32px;
}

.contact-section {
  align-items: end;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 21, 21, 0.18), transparent 28%),
    var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
}

.subpage-hero {
  padding: 154px clamp(22px, 5vw, 76px) clamp(66px, 9vw, 118px);
}

.subpage-hero .breadcrumb {
  color: var(--muted);
  display: inline-flex;
  font-weight: 780;
  margin-bottom: 34px;
}

.subpage-hero h1 {
  max-width: 1120px;
}

.subpage-hero .lede {
  max-width: 880px;
}

.coming-soon-hero {
  min-height: 100vh;
}

.coming-soon-hero h1 {
  max-width: 760px;
}

.detail-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
}

.detail-aside {
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  padding: clamp(28px, 4vw, 46px);
  position: sticky;
  top: 118px;
}

.detail-aside h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.8vw, 4.3rem);
}

.detail-aside p {
  color: #d9def5;
  line-height: 1.72;
}

.detail-content {
  display: grid;
  gap: 22px;
}

.content-block,
.feature-list article,
.tech-cloud span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.content-block {
  padding: clamp(26px, 4vw, 42px);
}

.content-block h2 {
  font-size: clamp(2rem, 3.4vw, 4.2rem);
}

.content-block p,
.content-block li {
  color: var(--muted);
  line-height: 1.78;
}

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

.feature-list article {
  min-height: 220px;
  padding: 26px;
}

.feature-list h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.feature-list p {
  color: var(--muted);
  line-height: 1.68;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-cloud span {
  color: var(--navy);
  font-weight: 780;
  padding: 11px 14px;
}

.accessibility-highlight {
  background: linear-gradient(135deg, var(--red), #cf1018);
  border-radius: var(--radius);
  color: var(--white);
  padding: clamp(34px, 6vw, 70px);
}

.accessibility-highlight h2,
.accessibility-highlight .eyebrow {
  color: var(--white);
}

.accessibility-highlight p {
  color: #fff0f0;
  line-height: 1.75;
  max-width: 940px;
}

.about-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.about-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.about-card p {
  color: var(--muted);
  line-height: 1.68;
}

.page-cta {
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: 24px;
}

.page-cta h2,
.page-cta .eyebrow {
  color: var(--white);
}

.page-cta p {
  color: #d9def5;
  line-height: 1.72;
  max-width: 780px;
}

.contact-card {
  max-width: 850px;
}

.contact-card > p {
  color: #d9def5;
}

.address {
  color: #d9def5;
  display: grid;
  gap: 12px;
  line-height: 1.5;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .brand-name {
    display: none;
  }

  .hero,
  .ai-section,
  .assessera-section,
  .proof-section,
  .contact-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .detail-aside {
    position: static;
  }

  .assessera-motion {
    min-height: 460px;
  }

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

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-strip span {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    width: 100%;
  }

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

  .site-header nav a {
    background: var(--mist);
    width: 100%;
  }

  .hero {
    padding-top: 150px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .services-grid,
  .managed-grid,
  .proof-list,
  .ai-cards,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 280px;
  }

  .service-tile span {
    margin-bottom: 48px;
  }

  .assessera-motion {
    min-height: 390px;
  }

  .assessera-motion::before {
    inset: 24px 0;
  }

  .motion-ribbon {
    left: -46%;
    right: -46%;
  }

  .motion-track {
    animation-duration: 28s;
    gap: 12px;
  }

  .motion-track span {
    padding: 15px 20px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-track {
    animation: none;
    transform: translateX(-18%);
  }
}
