:root {
  --navy: #183153;
  --teal: #087f6d;
  --mint: #e5f5f1;
  --amber: #b76e00;
  --red: #b42318;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dce3eb;
  --surface: #f7f9fc;
  --white: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: var(--teal);
}

.container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 17px;
  font-weight: 750;
  gap: 10px;
  text-decoration: none;
}

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

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--teal);
}

.hero {
  background:
    radial-gradient(circle at 85% 20%, var(--mint) 0, transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
  overflow: hidden;
  padding: 96px 0 88px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  margin: 16px 0 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
}

h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  margin: 0;
  max-width: 650px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
}

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

.microcopy {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(24, 49, 83, 0.12);
  overflow: hidden;
}

.card-topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  padding: 15px 18px;
}

.card-topbar span {
  background: var(--line);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.product-card-content {
  padding: 24px;
}

.result-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0;
}

.metric {
  background: var(--surface);
  border-radius: 8px;
  padding: 12px;
}

.metric strong {
  color: var(--navy);
  display: block;
  font-size: 20px;
}

.metric span {
  color: var(--muted);
  font-size: 11px;
}

.result-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.result-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  font-size: 12px;
  gap: 8px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 10px;
}

.result-row:last-child {
  border: 0;
}

.status {
  font-weight: 700;
}

.status.ok {
  color: var(--teal);
}

.status.review {
  color: var(--amber);
}

section {
  padding: 88px 0;
}

.section-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
}

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

.feature {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.feature p,
.step p,
.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  background: var(--surface);
}

.step-number {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  margin-bottom: 16px;
  width: 36px;
}

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

.trust h2,
.trust h3 {
  color: var(--white);
}

.trust p {
  color: #c9d4e1;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.policy-hero {
  background: var(--surface);
  padding: 64px 0;
}

.policy-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
}

.policy-content {
  margin: 0 auto;
  max-width: 800px;
}

.policy-content h2 {
  font-size: 26px;
  margin-top: 48px;
}

.notice {
  background: var(--mint);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
  color: var(--navy);
  padding: 16px 18px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Ninety Six Systems company site */

.company-site {
  background: #fff;
  color: #101828;
}

.company-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.company-brand {
  align-items: center;
  color: #101828;
  display: inline-flex;
  font-size: 15px;
  font-weight: 650;
  gap: 11px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.company-brand b {
  font-weight: 800;
}

.company-logo {
  align-items: center;
  background: #101828;
  border-radius: 9px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  letter-spacing: -0.07em;
  padding-right: 1px;
  position: relative;
  width: 34px;
}

.company-logo::after {
  background: #75e6c7;
  border: 2px solid #fff;
  border-radius: 50%;
  content: '';
  height: 7px;
  position: absolute;
  right: -2px;
  top: -2px;
  width: 7px;
}

.company-hero {
  background:
    linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, #dcfbf2 0, transparent 30%), #f8fafc;
  background-size:
    48px 48px,
    48px 48px,
    auto,
    auto;
  overflow: hidden;
  padding: 118px 0 108px;
}

.company-hero-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.08fr 0.92fr;
}

.company-hero h1 {
  color: #101828;
  font-size: clamp(48px, 7vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  max-width: 760px;
}

.company-hero .lead {
  color: #475467;
  font-size: 20px;
  max-width: 700px;
}

.company-kicker {
  align-items: center;
  color: #344054;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-kicker > span {
  background: #14a683;
  border-radius: 999px;
  display: inline-block;
  height: 7px;
  width: 7px;
}

.company-kicker.light {
  color: #aebdcc;
}

.company-button {
  background: #101828;
  border-color: #101828;
  border-radius: 999px;
  gap: 8px;
  padding: 13px 20px;
}

.company-button:hover,
.company-button:focus-visible {
  background: #26344d;
  border-color: #26344d;
}

.text-link {
  color: #101828;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: #087f6d;
}

.systems-illustration {
  aspect-ratio: 1;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(117, 230, 199, 0.14),
      transparent 36%
    ),
    #101828;
  border-radius: 42px;
  box-shadow: 0 36px 90px rgba(16, 24, 40, 0.22);
  max-width: 470px;
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
}

.systems-illustration::before {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.13) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  content: '';
  inset: 0;
  position: absolute;
}

.orbit {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  height: 58%;
  width: 58%;
}

.orbit-two {
  height: 82%;
  width: 82%;
}

.illustration-center {
  align-items: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  height: 132px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 132px;
}

.illustration-center span {
  color: #101828;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.illustration-center small {
  color: #667085;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 9px;
  text-transform: uppercase;
}

.system-node {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  display: flex;
  height: 66px;
  justify-content: center;
  position: absolute;
  width: 66px;
  z-index: 2;
}

.system-node svg {
  fill: none;
  height: 29px;
  stroke: #101828;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 29px;
}

.node-sheet {
  left: 11%;
  top: 18%;
}

.node-check {
  background: #75e6c7;
  right: 9%;
  top: 28%;
}

.node-flow {
  bottom: 12%;
  left: 29%;
}

.company-products {
  padding: 108px 0;
}

.section-heading-row {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 48px;
}

.section-heading-row h2 {
  color: #101828;
  margin-top: 16px;
  max-width: 660px;
}

.section-heading-row > p {
  color: #667085;
  line-height: 1.7;
  margin: 0 0 4px;
}

.catalog-card {
  background: #101828;
  border-radius: 28px;
  color: #fff;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
}

.catalog-visual {
  align-items: center;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.44),
      transparent 30%
    ),
    linear-gradient(145deg, #c9f7ea, #75e6c7);
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.catalog-visual::before,
.catalog-visual::after {
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 50%;
  content: '';
  height: 310px;
  position: absolute;
  width: 310px;
}

.catalog-visual::after {
  height: 440px;
  width: 440px;
}

.catalog-visual img {
  border-radius: 26px;
  box-shadow: 0 25px 65px rgba(16, 24, 40, 0.26);
  height: 136px;
  position: relative;
  width: 136px;
  z-index: 2;
}

.catalog-lines {
  bottom: 36px;
  display: grid;
  gap: 8px;
  left: 36px;
  position: absolute;
}

.catalog-lines span {
  background: rgba(16, 24, 40, 0.2);
  border-radius: 999px;
  display: block;
  height: 5px;
  width: 90px;
}

.catalog-lines span:nth-child(2) {
  width: 132px;
}

.catalog-lines span:nth-child(3) {
  width: 70px;
}

.catalog-lines span:nth-child(4) {
  width: 108px;
}

.catalog-copy {
  padding: 54px;
}

.product-meta {
  align-items: center;
  color: #aebdcc;
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability {
  background: rgba(117, 230, 199, 0.14);
  border: 1px solid rgba(117, 230, 199, 0.28);
  border-radius: 999px;
  color: #75e6c7;
  padding: 5px 9px;
}

.catalog-copy h3 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin: 20px 0 14px;
}

.catalog-copy > p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.product-points {
  color: #dce5ee;
  display: grid;
  font-size: 14px;
  gap: 11px;
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
}

.product-points li {
  padding-left: 24px;
  position: relative;
}

.product-points li::before {
  color: #75e6c7;
  content: '✓';
  font-weight: 850;
  left: 0;
  position: absolute;
}

.catalog-copy .company-button {
  background: #75e6c7;
  border-color: #75e6c7;
  color: #101828;
}

.portfolio-note {
  align-items: center;
  border: 1px solid #e4e7ec;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  margin-top: 22px;
  padding: 26px 30px;
}

.portfolio-icon {
  align-items: center;
  background: #f2f4f7;
  border-radius: 14px;
  color: #667085;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 25px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.portfolio-note strong {
  color: #101828;
}

.portfolio-note p {
  color: #667085;
  font-size: 14px;
  margin: 5px 0 0;
}

.company-principles {
  background: #101828;
  padding: 108px 0;
}

.company-principles h2 {
  color: #fff;
  margin-top: 18px;
  max-width: 720px;
}

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

.principle-grid article {
  border-left: 1px solid #344054;
  padding: 10px 34px 10px 28px;
}

.principle-number {
  color: #75e6c7;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.principle-grid h3 {
  color: #fff;
  font-size: 20px;
}

.principle-grid p {
  color: #aebdcc;
  line-height: 1.7;
}

.company-footer {
  background: #fff;
  padding-bottom: 22px;
}

.company-footer .footer-grid {
  align-items: start;
}

.company-footer p {
  color: #667085;
  margin: 14px 0 0;
}

.footer-brand .company-logo {
  height: 32px;
  width: 32px;
}

.copyright-row {
  border-top: 1px solid #e4e7ec;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 22px;
}

/* Product identity details */

.brand .byline {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  margin-left: 2px;
  padding-left: 12px;
}

.product-hero h1 {
  font-size: clamp(42px, 5.4vw, 66px);
}

.feature-icon {
  align-items: center;
  background: var(--mint);
  border-radius: 12px;
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 22px;
  width: 44px;
}

.feature-icon.amber {
  background: #fff3d6;
}

.feature-icon.blue {
  background: #e8f0ff;
}

.feature-icon svg {
  fill: none;
  height: 23px;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 23px;
}

@media (max-width: 800px) {
  .hero-grid,
  .grid-3,
  .company-hero-grid,
  .section-heading-row,
  .catalog-card,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .footer-grid {
    flex-direction: column;
  }

  .company-hero {
    padding: 78px 0 72px;
  }

  .company-hero-grid {
    gap: 54px;
  }

  .systems-illustration {
    justify-self: center;
    width: min(100%, 420px);
  }

  .section-heading-row {
    align-items: start;
    gap: 12px;
  }

  .catalog-visual {
    min-height: 320px;
  }

  .catalog-copy {
    padding: 36px 28px 40px;
  }

  .principle-grid {
    gap: 34px;
  }

  .principle-grid article {
    border-left: 0;
    border-top: 1px solid #344054;
    padding: 26px 0 0;
  }

  .principle-number {
    margin-bottom: 16px;
  }

  .copyright-row {
    flex-direction: column;
    gap: 8px;
  }

  .brand .byline {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .company-brand {
    font-size: 13px;
  }

  .company-logo {
    height: 31px;
    width: 31px;
  }

  .company-hero h1 {
    font-size: 46px;
  }

  .systems-illustration {
    border-radius: 28px;
  }

  .system-node {
    border-radius: 13px;
    height: 52px;
    width: 52px;
  }

  .illustration-center {
    border-radius: 22px;
    height: 108px;
    width: 108px;
  }

  .portfolio-note {
    align-items: start;
    padding: 22px;
  }
}

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