:root {
  --navy: #13193d;
  --navy2: #1c2456;
  --blue: #269be1;
  --blue-deep: #4a4a4a;
  --green: #279be2;
  --green-deep: #1772aa;
  --gray: #c7c7c5;
  --gray-line: #dcdcda;
  --off: #f4f4f3;
  --red: #e63946;
  --amber: #f59e0b;
  --white: #fff;
  --ink-soft: #5c5c5c;
  --radius: 16px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family:
    Sora,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

p {
  margin: 0;
  line-height: 1.65;
}

section {
  padding: 104px 0;
}

section.tight {
  padding: 64px 0;
}

.section-head {
  max-width: 1040px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-head p {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 640px;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}


.story-copy {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-copy p {
  font-size: 17px;
  color: var(--ink-soft);
}


.eyebrow,
.trust p.label,
.benefit-eyebrow,
.step-label,
.ph-tag,
.t-tag,
.n-card .tag,
footer h5,
.hero-logos .label,
.hero-trust span,
.modal-header .eyebrow,
.nav-links a,
.nav-links .nav-label,
.stat-row .num,
.prow .idx {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  background: var(--green);
}


.on-dark {
  color: var(--white);

  --ink-soft: #a6a6a6;
  --gray: rgb(255 255 255 / 18%);
  --gray-line: rgb(255 255 255 / 14%);
  --blue-deep: #adadad;
}

.on-dark .eyebrow {
  color: var(--white);
  border-bottom-color: var(--white);
}

.on-dark .eyebrow::before {
  background: var(--green);
}

.on-dark .f-copy li {
  color: var(--white);
}

.on-dark .shot {
  background: rgb(255 255 255 / 3%);
  border-color: rgb(255 255 255 / 30%);
  box-shadow: none;
}

.on-dark .shot .chrome {
  background: rgb(255 255 255 / 6%);
  border-bottom-color: rgb(255 255 255 / 14%);
}

.on-dark .shot .chrome .dot {
  background: rgb(255 255 255 / 30%);
}

.on-dark .shot .ph {
  background: repeating-linear-gradient(
    135deg,
    rgb(255 255 255 / 3%),
    rgb(255 255 255 / 3%) 10px,
    rgb(255 255 255 / 7%) 10px,
    rgb(255 255 255 / 7%) 20px
  );
  border-color: rgb(255 255 255 / 28%);
}

.on-dark .shot .ph .ph-icon {
  color: rgb(255 255 255 / 45%);
}

.on-dark .t-card {
  background: rgb(255 255 255 / 4%);
  border-color: rgb(255 255 255 / 16%);
}

.on-dark .btn-navy {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.on-dark .btn-navy:hover {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14.5px;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    color 0.12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-green:hover {
  background: var(--navy);
  color: var(--green);
  border-color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

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

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-link svg {
  transition: transform 0.15s;
}

.btn-link:hover svg {
  transform: translateX(3px);
}


.announce {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announce a {
  font-weight: 700;
  color: var(--green);
  margin-left: 6px;
}


header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1.5px solid var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a,
.nav-links .nav-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.68;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition:
    opacity 0.15s ease,
    border-color 0.15s ease;
}

.nav-links a:hover {
  opacity: 1;
  border-bottom-color: var(--green);
}

.nav-label {
  background: none;
  border: none;
  padding: 0 0 2px;
  margin: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: default;
}


.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  margin-left: 12px;
  background: none;
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.is-open .icon-open {
  display: none;
}

.nav-toggle.is-open .icon-close {
  display: block;
}

.mobile-nav-actions {
  display: none;
}


.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a,
.nav-item > .nav-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-item .caret {
  transition: transform 0.15s ease;
}

.nav-item:hover .caret,
.nav-item:focus-within .caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  min-width: 264px;
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s ease;
  z-index: 60;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  opacity: 1;
  border-bottom: none;
  white-space: nowrap;
  border-radius: 8px;
}

.nav-dropdown a:hover {
  background: var(--off);
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--chrome-h, 90px));
}

@supports (height: 100svh) {
  .hero {
    min-height: calc(100svh - var(--chrome-h, 90px));
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgb(10 10 10 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(10 10 10 / 5%) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgb(0 0 0 / 90%),
    transparent 85%
  );
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 90%), transparent 85%);
}

.on-dark.hero::before {
  background-image:
    linear-gradient(rgb(255 255 255 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 6%) 1px, transparent 1px);
}

.hero-blob {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero .lede {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.hero-trust span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.hero-trust .mini-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust .mini-logos img {
  max-height: 18px;
  width: auto;
  filter: grayscale(1) opacity(0.6);
}

.hero.compact {
  display: block;
  min-height: auto;
  padding: 88px 0 64px;
}

.hero.compact .lede {
  max-width: 620px;
}


.not-found .lede a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.not-found .lede a:hover {
  color: var(--navy);
}

.hero-logos {
  margin-top: 36px;
}

.hero-logos .label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 45%);
  margin-bottom: 64px;
}

.hero-logos .logo-grid img {
  filter: none;
  opacity: 0.6;
}

.hero-logos .logo-grid img:hover {
  filter: none;
  opacity: 1;
}


.shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--navy);
}

.shot > .chrome,
.shot > .ph {
  position: relative;
  z-index: 1;
}

.shot .chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #ededed;
  border-bottom: 1px solid var(--gray-line);
  overflow: hidden;
}

.chrome .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9c9c9;
}

.shot .ph {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background: repeating-linear-gradient(
    135deg,
    #fafafa,
    #fafafa 10px,
    #f0f0f0 10px,
    #f0f0f0 20px
  );
  border: 1.5px dashed var(--gray);
  margin: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.shot .ph .ph-icon {
  width: 38px;
  height: 38px;
  color: #9b9b9b;
}

.shot .ph .ph-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.shot .ph .ph-desc {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 320px;
  line-height: 1.5;
}

.shot.compact .ph {
  aspect-ratio: 4/3;
  padding: 20px;
}

.shot.wide .ph {
  aspect-ratio: 16/7;
}

.shot .frame {
  margin: 10px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
}

.shot .frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot.compact .frame {
  aspect-ratio: 4/3;
}

.shot .frame.contain img {
  object-fit: contain;
}
.shot .frame.contain.top img {
  object-position: top;
}
.shot .frame.illustration {
  background: #f5f8fb;
}
.photo-caption {
  margin: 12px 14px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}


.trust {
  padding: 60px 0;
  background: var(--navy);
}

.trust p.label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 34px;
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 36px 20px;
  align-items: center;
}

.logo-grid.cols-3 {
  grid-template-columns: repeat(3, max-content);
}
.logo-grid img {
  max-height: 45px;
  width: auto;
  filter: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.logo-grid img:hover {
  opacity: 1;
}


.problem {
  background: var(--white);
}

.prow {
  display: grid;
  grid-template-columns: 70px 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--gray-line);
}

.prow:last-child {
  border-bottom: 1px solid var(--gray-line);
}

.prow .idx {
  font-size: 36px;
  font-weight: 600;
  color: rgb(19 25 61 / 15%);
}

.prow .ttl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.prow .ttl .ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.prow p.desc {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 560px;
}


.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 96px;
}

.feature-row.reverse .f-copy {
  order: 2;
}

.feature-row.reverse .f-shot {
  order: 1;
}

.f-copy h3 {
  font-size: 27px;
  margin-bottom: 14px;
}

.f-copy > p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.f-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.f-copy li svg {
  flex: none;
  margin-top: 3px;
  color: var(--green-deep);
}


.how {
  background: var(--navy);
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto 52px;
}

.stepper-node {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-line {
  flex: 1;
  height: 1.5px;
  background: var(--gray);
  margin: 0 10px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.step-card {
  display: flex;
  flex-direction: column;
}

.step-card .shot {
  margin-bottom: 20px;
}

.step-card .step-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
}


.benefits {
  background: var(--white);
}

.benefit-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
  display: block;
}


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

.g-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.g-row h2 {
  font-size: 30px;
  max-width: 460px;
  color: var(--white);
}

.g-row p {
  font-size: 15.5px;
  color: rgb(255 255 255 / 65%);
  max-width: 380px;
}

.g-row p a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.g-row p a:hover {
  color: var(--white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--gray-line);
  padding-top: 40px;
}

.stat-row.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stat-row div {
  text-align: center;
}

.stat-row .num {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}

.stat-row .lbl {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 6px;
}


.usecases {
  background: var(--white);
}

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

.use-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.use-card {
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  padding: 24px;
}

.use-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid var(--gray-line);
  color: currentcolor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.use-card h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.use-card p {
  font-size: 16px;
  color: var(--ink-soft);
}


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


.testimonial {
  background: var(--white);
}

.t-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  padding: 56px 48px;
  background: var(--off);
}

.t-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: #eaeaea;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--gray);
}

.t-avatar.filled {
  background: none;
  border-style: solid;
  border-color: var(--gray-line);
  overflow: hidden;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.t-card blockquote {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}

.on-dark .t-card blockquote {
  color: var(--white);
}

.t-card cite {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

.t-tag {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-top: 14px;
}


.faq-section {
  background: var(--white);
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--gray-line);
  padding: 22px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-soft);
  flex: none;
  margin-left: 16px;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 680px;
}

.faq p a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.faq p a:hover {
  color: var(--navy);
}


.news {
  background: var(--white);
}

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

.news-grid.single {
  grid-template-columns: 1fr;
  max-width: 380px;
  margin: 0 auto;
}

.n-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.n-card .thumb {
  aspect-ratio: 16/9;
  background: repeating-linear-gradient(
    135deg,
    #fafafa,
    #fafafa 10px,
    #f0f0f0 10px,
    #f0f0f0 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-line);
}

.n-card .thumb svg {
  width: 30px;
  height: 30px;
  color: #9b9b9b;
}

.n-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.n-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.n-card .tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.n-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--navy);
}

.n-card p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}

.n-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}


.final-cta {
  background: var(--navy);
  border-top: 4px solid var(--green);
  border-radius: 20px;
  margin: 0 32px;
  padding: 64px 48px;
  text-align: center;
  max-width: calc(var(--maxw) - 64px);
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 16px;
  color: rgb(255 255 255 / 85%);
  max-width: 520px;
  margin: 0 auto 28px;
  font-weight: 500;
}


footer {
  background: var(--navy);
  color: rgb(255 255 255 / 70%);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  display: block;
  height: 120px;
  margin-top: 0;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgb(255 255 255 / 55%);
  max-width: 260px;
  margin-bottom: 20px;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 16%);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  background: rgb(255 255 255 / 10%);
}

footer h5 {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgb(255 255 255 / 45%);
  margin-top: 0;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer ul a {
  font-size: 14.5px;
  color: rgb(255 255 255 / 75%);
}

footer ul a:hover {
  color: var(--white);
}

.footer-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 28px;
}

.footer-badges img {
  display: block;
}

.footer-badges .badge-soc2 {
  height: 77px;
  width: auto;
}

.footer-badges .badge-nacha {
  height: 62px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgb(255 255 255 / 40%);
  flex-wrap: wrap;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: rgb(255 255 255 / 75%);
}

.footer-bottom .footer-link-btn {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer-bottom .footer-link-btn:hover {
  color: rgb(255 255 255 / 75%);
}


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

.persona-card {
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.persona-role {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.persona-cares {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.persona-cares strong {
  color: var(--green-deep);
}

.persona-card blockquote {
  font-size: 16.5px;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 2px solid var(--green-deep);
}

.persona-fit {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-line);
}

.on-dark .persona-cares strong {
  color: var(--green);
}

.on-dark .persona-card blockquote {
  border-left-color: var(--green);
}


.credibility-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-line);
  margin-top: 32px;
  padding-top: 26px;
}

.credibility-row div {
  flex: 1;
  min-width: 180px;
  padding-right: 24px;
}

.credibility-row .num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  font-family: "IBM Plex Mono", monospace;
}

.credibility-row .lbl {
  display: block;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 6px;
}


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

.team-card {
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.team-photo {
  aspect-ratio: 9/8;
  overflow: hidden;
  background: #eaeaea;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card h4 {
  font-size: 16px;
  margin: 18px 0 0;
}

.team-card .role {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

.team-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 32px 20px;
  text-decoration: none;
  color: var(--navy);
  background: var(--white);

  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.15s ease,
    color 0.15s ease;
  transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s), 0s, 0s;
}

.team-cta h4 {
  font-size: 20px;
  margin: 0;
}

.team-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.team-card a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.on-dark .team-card {
  border-color: var(--gray-line);
}

.on-dark .team-card a {
  background: rgb(255 255 255 / 8%);
  color: var(--white);
}


.post-hero {
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: var(--off);
  border: 1px solid var(--gray-line);
  border-radius: 20px;
  margin: 0 0 40px;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--gray-line);
}

.post-header h1 {
  font-size: 40px;
  max-width: 820px;
  margin-bottom: 22px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.post-meta .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off);
  color: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--gray);
  flex: none;
}


.post-meta .avatar.photo {
  border-style: solid;
  border-color: var(--gray-line);
  background: none;
  overflow: hidden;
}

.post-meta .avatar.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.post-meta .who {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.post-meta .when {
  font-size: 13px;
  color: var(--ink-soft);
  font-family: "IBM Plex Mono", monospace;
}

.post-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  align-items: start;
}

.post-rail {
  position: sticky;
  top: calc(var(--chrome-h, 90px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-toc-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-family: "IBM Plex Mono", monospace;
}

.post-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.post-toc a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--gray-line);
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.post-toc a:hover {
  color: var(--navy);
}

.post-toc a.active {
  color: var(--navy);
  border-left-color: var(--green-deep);
  font-weight: 700;
}

.post-rail-cta {
  background: var(--off);
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  padding: 22px;
}

.post-rail-cta p {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.post-rail-cta .btn {
  width: 100%;
}

.post-body {
  max-width: 680px;
}

.post-body > section {
  padding: 0;
  scroll-margin-top: calc(var(--chrome-h, 90px) + 20px);
}

.post-body > section + section {
  margin-top: 50px;
}

.post-body h2 {
  font-size: 23px;
  margin: 0 0 16px;
}

.post-body h3 {
  font-size: 18px;
  margin: 32px 0 12px;
}

.post-body h4 {
  font-size: 15px;
  margin: 22px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.post-body h2 + h3,
.post-body h3 + h4 {
  margin-top: 0;
}

.post-body p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.post-body ul,
.post-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-body li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.post-body strong {
  color: var(--navy);
}

.post-body a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.post-body a:hover {
  color: var(--navy);
}

.table-scroll {
  overflow-x: auto;
  margin: 0 0 28px;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  min-width: 520px;
}

.post-body th,
.post-body td {
  border: 1px solid var(--gray-line);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.post-body th {
  background: var(--off);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  white-space: nowrap;
}

.post-body td {
  color: var(--ink-soft);
  font-size: 15px;
}

.pull-quote {
  border-left: 3px solid var(--green-deep);
  padding: 2px 0 2px 22px;
  margin: 8px 0 28px;
}

.pull-quote p {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
}

.pull-quote cite {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
}

@media (max-width: 980px) {
  section {
    padding: 76px 0;
  }

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

  .hero h1 {
    font-size: 38px;
  }

  .prow {
    grid-template-columns: 44px 1fr;
    grid-template-areas: "idx ttl" "desc desc";
  }

  .prow .idx {
    grid-area: idx;
    font-size: 28px;
  }

  .prow .ttl {
    grid-area: ttl;
  }

  .prow p.desc {
    grid-area: desc;
    max-width: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.reverse .f-copy {
    order: 1;
  }

  .feature-row.reverse .f-shot {
    order: 2;
  }

  .feature-row + .feature-row {
    margin-top: 64px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stepper {
    max-width: 300px;
    margin-bottom: 44px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, max-content);
  }

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

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

  .post-hero {
    height: 200px;
    margin: 0 0 28px;
  }

  .post-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .post-rail {
    position: static;
    order: -1;
  }

  .post-toc {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .post-toc a {
    border-left: none;
    border-bottom: 2px solid var(--gray-line);
    padding: 4px 0;
  }

  .post-toc a.active {
    border-left-color: transparent;
    border-bottom-color: var(--green-deep);
  }

  .post-rail-cta {
    display: none;
  }

  .post-body {
    max-width: none;
  }

  .post-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }


  header.site .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav {
    padding: 16px 0;
  }

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

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--navy);
    padding: 8px 24px 24px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }

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

  .nav-links > a,
  .nav-links .nav-label {
    width: 100%;
    font-size: 15px;
    opacity: 1;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-item .caret {
    margin-left: 8px;
  }

  .nav-item.is-open .caret {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding: 0 0 8px 14px;
    margin: 0;
    min-width: 0;
  }

  .nav-item.is-open .nav-dropdown {
    display: flex;
  }

  .nav-dropdown a {
    padding: 12px 0;
    border-bottom: none;
    font-size: 14.5px;
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
  }

  .mobile-nav-actions .btn {
    width: 100%;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
    font-size: 14.5px;
    opacity: 1;
    border-bottom: 1.5px solid var(--navy);
    padding: 15px 28px;
    margin-bottom: 16px;
    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  .mobile-nav-actions .btn:last-child {
    margin-bottom: 0;
  }

  .mobile-nav-actions .btn-navy {
    color: var(--white);
  }

  .mobile-nav-actions .btn-outline {
    color: var(--navy);
  }

  .mobile-nav-actions .btn-outline:hover {
    color: var(--white);
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero .lede {
    font-size: 17px;
  }

  .section-head h2 {
    font-size: 27px;
  }

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

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .logo-grid {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 40px;
    row-gap: 40px;
  }

  .final-cta {
    margin: 0 16px;
    padding: 44px 22px;
  }

  .final-cta h2 {
    font-size: 25px;
  }

  section {
    padding: 56px 0;
  }

  .footer-badges {
    gap: 22px;
  }

  .footer-badges .badge-soc2 {
    height: 62px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .t-card {
    padding: 40px 24px;
  }

  .t-card blockquote {
    font-size: 19px;
  }

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

  .credibility-row {
    flex-direction: column;
    gap: 20px;
  }

  .post-header h1 {
    font-size: 26px;
  }

  .pull-quote p {
    font-size: 17px;
  }

  .post-body table {
    font-size: 14px;
    min-width: 460px;
  }

  .post-body th,
  .post-body td {
    padding: 8px 10px;
  }
}


.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 150;
  max-width: 380px;
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgb(19 25 61 / 16%);
  padding: 20px 22px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.cookie-banner p a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner-actions .btn-link {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
  border-bottom: none;
  padding-bottom: 0;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 18px;
  }
}


body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(10 10 10 / 78%);
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px 36px 36px;
  border: 1.5px solid var(--navy);
  box-shadow: 0 24px 60px rgb(19 25 61 / 22%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.modal-close:hover {
  background: var(--navy);
  color: var(--white);
}

.modal-header {
  margin-bottom: 20px;
}

.modal-header .eyebrow {
  margin-bottom: 10px;
}

.modal-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.modal-footnote {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-line);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.modal-footnote a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-footnote a:hover {
  color: var(--green);
}


#hubspot-form-demo input[type="submit"],
#hubspot-form-demo .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green) !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy) !important;
  border-radius: 14px !important;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  padding: 14px 28px !important;
  cursor: pointer;
  width: 100%;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    color 0.12s ease;
}

#hubspot-form-demo input[type="submit"]:hover,
#hubspot-form-demo .hs-button:hover {
  background: var(--navy) !important;
  color: var(--green) !important;
  border-color: var(--navy) !important;
  transform: translate(-2px, -2px);
}

@media (max-width: 640px) {
  .modal {
    padding: 0;
  }

  .modal-panel {
    max-width: none;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    padding: 36px 22px 26px;
    box-shadow: none;
  }
}
