:root {
  /* Citinet logo palette: navy, white, red — no browns */
  --ink: #0e1621;
  --ink-2: #1c2a3a;
  --slate: #5a6b7d;
  --line: #d9e2ec;
  --paper: #f5f8fb;
  --paper-2: #eaf0f6;
  --white: #ffffff;
  --navy: #123a6f;
  --navy-deep: #0b2f5b;
  --navy-dark: #071a33;
  --red: #c41e3a;
  --red-soft: #e85a6e;
  --accent: var(--navy);
  --accent-2: var(--red);
  --muted: #8fa3b8;
  --soft: #c5d2e0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(7, 26, 51, .05), 0 4px 14px rgba(7, 26, 51, .06);
  --shadow: 0 2px 6px rgba(7, 26, 51, .06), 0 14px 32px rgba(7, 26, 51, .09);
  --shadow-lg: 0 6px 16px rgba(7, 26, 51, .08), 0 28px 56px rgba(7, 26, 51, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fafc 0%, var(--paper) 45%, #eef3f8 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

/* Nav */
header.site {
  background: rgba(7, 26, 51, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(7, 26, 51, .2);
  position: sticky;
  top: 0;
  z-index: 40;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.logo .logo-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.logo .logo-name {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  color: #fff;
}

.logo .logo-since {
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* legacy text-only mark (unused) */
.logo .mark { display: none; }

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #fff; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover { filter: brightness(1.06); }

/* Hero — first-iteration structure + photo */
.hero {
  position: relative;
  color: var(--white);
  padding: 88px 0 72px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-deep) 48%, var(--navy) 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  mix-blend-mode: luminosity;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,26,51,.92) 0%, rgba(11,47,91,.78) 48%, rgba(18,58,111,.55) 100%),
    radial-gradient(ellipse at 85% 20%, rgba(196,30,58,.22), transparent 45%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero-page { padding: 72px 0 56px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b8c9dc;
  margin: 0 0 18px;
}

.hero h1 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 14ch;
  letter-spacing: -.02em;
}

.hero-page h1 { max-width: 20ch; }

.hero .sub {
  font-size: clamp(17px, 2.1vw, 20px);
  color: #d7e2ee;
  max-width: 36em;
  margin: 0 0 32px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-block;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.btn-ink {
  background: var(--navy-deep);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.btn-outline-ink {
  border: 1px solid var(--navy);
  color: var(--navy) !important;
  background: var(--white);
}

/* Proof */
.proof {
  background: linear-gradient(180deg, #0d2444, var(--navy-dark));
  color: #d5e0ec;
  box-shadow: 0 10px 28px rgba(7, 26, 51, .22);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.proof-row span {
  border-left: 1px solid rgba(255,255,255,.12);
  padding: 4px 8px;
}

.proof-row span:first-child { border-left: 0; }

/* Sections */
.section { padding: 72px 0; position: relative; }

.section h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 36px);
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.section .lede {
  color: var(--slate);
  font-size: 18px;
  max-width: 40em;
  margin: 0 0 36px;
}

.center-copy { text-align: center; }
.center-copy h2,
.center-copy .section-title-sm { text-align: center; }
.center-copy .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 26px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.card h3 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 24px;
  margin: 0 0 12px;
}

.card p {
  color: var(--slate);
  margin: 0 0 22px;
  flex: 1;
}

.card .link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

.card .link:hover { color: var(--red); }

/* Human photo band */
.human-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.human-band img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.human-band .copy {
  padding: 36px 36px 36px 8px;
}

.human-band.flip {
  grid-template-columns: 1fr 1.05fr;
}

.human-band.flip img { order: 2; }
.human-band.flip .copy { order: 1; padding: 36px 8px 36px 36px; }

/* Spotlight — light, logo colors */
.spotlight {
  background: transparent;
  padding: 8px 0 48px;
  border: 0;
}

.spot-grid {
  display: block;
}

.spot-panel {
  min-height: 0;
  background: linear-gradient(160deg, #fff 0%, #f0f5fa 100%);
  color: var(--ink);
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.spot-panel-combined {
  max-width: none;
  width: 100%;
  margin: 0;
}

.spot-combined-top {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.spot-panel .spot-kicker {
  color: var(--slate);
  font-size: 16px;
  margin: 0;
}

.spot-panel .spot-subhead {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  margin: 12px 0 10px;
  color: var(--ink);
}

.spot-panel .spot-body {
  color: var(--slate);
  font-size: 17px;
  margin: 0 0 16px;
  max-width: 62ch;
}

.spot-panel .price {
  margin-bottom: 18px;
}

.spot-panel .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}


.spot-panel::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}

.spot-panel .tag {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  font-weight: 700;
}

.spot-panel h3 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 32px;
  margin: 0 0 8px;
}

.spot-panel .logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.spot-panel .logo-row img {
  height: 96px;
  width: auto;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.spot-panel-combined .logo-row {
  margin-bottom: 0;
  flex-shrink: 0;
}

.spot-copy { display: none; /* merged into spot-panel */

  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}

.spot-copy h3 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 28px;
  margin: 0 0 14px;
}

.spot-copy p {
  color: var(--slate);
  font-size: 17px;
  margin: 0 0 18px;
}

.price {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}


/* Founder */
.founder-band {
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
  border-top: 1px solid rgba(217, 226, 236, .7);
  border-bottom: 1px solid rgba(217, 226, 236, .7);
  padding: 56px 0;
}

.founder-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 42px 36px;
}

.founder-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.founder-card h2 {
  margin: 0 0 6px;
  font-size: clamp(30px, 3.5vw, 40px);
}

.founder-role {
  margin: 0 0 18px;
  color: var(--slate);
  font-weight: 600;
  font-size: 15px;
}

.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.founder-chips span {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}

.founder-prose p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 14px;
  line-height: 1.65;
}

.founder-closer {
  margin-top: 8px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 18px !important;
  color: var(--ink) !important;
}

@media (max-width: 700px) {
  .founder-card {
    padding: 28px 22px 24px;
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-grid p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 16px;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-height: 280px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Quotes — expanded testimonials */
.section.quotes-band,
.quotes-band {
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 55%, #eef2f7 100%);
  border-top: 1px solid rgba(217, 226, 236, .7);
  border-bottom: 1px solid rgba(217, 226, 236, .7);
  padding: 36px 0 40px;
}

.quotes-header {
  text-align: center;
  margin: 0 auto 14px;
  max-width: 36em;
}

.quotes-header h2 {
  margin-bottom: 10px;
}

.quotes-header .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
}

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

.quotes-featured .quote--featured {
  grid-column: 1 / -1;
  padding: 28px 32px 26px;
}

.quotes-featured .quote--featured p {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.45;
  max-width: 28em;
}

.quotes-featured .quote--featured::before {
  font-size: 72px;
  top: 10px;
  left: 28px;
  color: rgba(196, 30, 58, .42);
}

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 22px 22px;
  font-size: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.quote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 56px;
  color: rgba(196, 30, 58, .4);
  line-height: 1;
  pointer-events: none;
}

.quote p {
  margin: 12px 0 14px;
  color: var(--ink-2);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  flex: 1;
}

.quote cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.quote .cite-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  text-transform: none;
}

.quote .cite-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
}

#testimonials.center-copy,
#testimonials.center-copy .wrap,
#testimonials .quotes-header {
  text-align: center;
}

#testimonials.center-copy h2,
#testimonials .text-center,
#testimonials .quotes-header h2 {
  text-align: center !important;
}

#testimonials .lede,
#testimonials .lede-center,
#testimonials .quotes-header .lede {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

/* Press grid */
.press-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  max-width: 760px;
  text-align: left;
}

.press-cards {
  grid-template-columns: 1fr;
}

.press-list a {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 18px 20px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.press-list a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.press-list .src {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
  font-weight: 600;
}



/* Homepage trust / operators */
.trust-band {
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  border-top: 1px solid rgba(217, 226, 236, .7);
  border-bottom: 1px solid rgba(217, 226, 236, .7);
  padding: 56px 0 60px;
}

.trust-header {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 28px;
}

.trust-header h2 {
  margin-bottom: 8px;
}

.trust-header .lede {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  text-align: center;
}

.logo-carousel {
  margin: 0 auto 36px;
  width: 100%;
  max-width: 1120px;
}

.logo-carousel-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-carousel-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 55s linear infinite;
  will-change: transform;
}

.logo-carousel:hover .logo-carousel-track,
.logo-carousel:focus-within .logo-carousel-track {
  animation-play-state: paused;
}

.logo-carousel-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.trust-logo {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  width: 210px;
  height: 112px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.trust-logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 14px;
  }
  .logo-carousel-set[aria-hidden="true"] {
    display: none;
  }
  .logo-carousel-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.trust-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.trust-quotes .quote {
  padding: 24px 22px 20px;
}

.trust-quotes .quote p {
  margin: 10px 0 14px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
}

.trust-foot {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .trust-quotes {
    grid-template-columns: 1fr;
  }
  .trust-band {
    padding: 44px 0 48px;
  }
}


/* Products — bordered cards, left→right */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.product-grid.window-center {
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: stretch;
}

.product-card > div:first-child {
  padding: 32px 30px 30px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  display: flex;
  flex-direction: column;
}

.product-card > .prose {
  padding: 32px 30px 30px;
}

.product-card .logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  min-height: 56px;
}

.product-card .logos img.wordmark {
  max-height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.product-card .logos img.mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}

.product-card .eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

.product-card h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.product-card .lede {
  color: var(--slate);
  font-size: 16px;
  margin: 0 0 16px;
  max-width: none;
}

.product-card .price {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  font-size: 15px;
}

.product-card .cta-row {
  margin-top: auto;
  padding-top: 8px;
}

.product-card .prose p {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 16px;
}

.product-card .prose ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-2);
}

.product-card .prose li {
  margin: .4rem 0;
  font-size: 15px;
}

.product-card .badge-soon {
  align-self: flex-start;
}

/* Clients logo wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px auto 0;
  width: 100%;
  max-width: 960px;
}

/* Center a leftover pair on the last row (22 logos → 2 in columns 2–3) */
.logo-wall > .logo-tile:nth-last-child(2):nth-child(4n + 1) {
  grid-column: 2;
}
.logo-wall > .logo-tile:last-child:nth-child(4n + 2) {
  grid-column: 3;
}

.logo-tile {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.logo-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-color: #d0d0d0;
}

.logo-tile img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.partner-band {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 0;
}

.partner-band .logo-tile {
  width: 280px;
  aspect-ratio: 16 / 9;
  padding: 28px 32px;
}

.partner-band .logo-tile img {
  max-height: 56px;
}

.partner-note {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-tight {
  padding-top: 28px;
}

.section-title-sm {
  font-size: clamp(24px, 3vw, 30px) !important;
}


.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px auto 0;
  max-width: 960px;
  text-align: left;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-height: 100%;
}

.press-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.press-card:hover .press-read {
  color: var(--red);
}

.press-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

.press-badge--case {
  color: var(--red);
  border-color: rgba(196, 30, 58, .25);
  background: rgba(196, 30, 58, .06);
}

.press-title {
  margin: 0;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.press-blurb {
  margin: 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  flex: 1;
}

.press-read {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .15s ease;
}

/* CTA */
.cta-band {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(196,30,58,.28), transparent 45%),
    linear-gradient(145deg, var(--navy-dark), var(--navy-deep) 55%, var(--navy));
  color: #fff;
  padding: 72px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.cta-band h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 36px);
  margin: 0 0 12px;
}

.cta-band p {
  color: #c9d7e6;
  max-width: 36em;
  margin: 0 0 28px;
  font-size: 18px;
}

/* Footer */
footer.site {
  background: linear-gradient(180deg, #0a1c36, #071528);
  color: #9eb0c3;
  padding: 40px 0 28px;
  font-size: 13px;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}


.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  text-align: left;
}

.foot-brand img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  align-self: flex-start;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.foot-brand strong {
  color: #fff;
  display: block;
  margin: 0 0 6px;
  font-size: 15px;
}

/* .foot-top strong handled via .foot-brand */
.foot-top strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.foot-nav a:hover { color: #fff; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-bottom a { margin-right: 12px; }
.foot-bottom a:hover { color: #fff; }

.link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

@media (max-width: 1000px) {
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .logo-wall > .logo-tile:nth-last-child(2):nth-child(4n + 1),
  .logo-wall > .logo-tile:last-child:nth-child(4n + 2) {
    grid-column: auto;
  }
  .logo-wall > .logo-tile:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .pillars, .quotes, .proof-row, .spot-grid, .about-grid, .human-band, .human-band.flip,
  .press-grid, .quotes-featured {
    grid-template-columns: 1fr;
  }
  .quotes-featured .quote--featured {
    grid-column: auto;
    padding: 28px 24px 24px;
  }
  .quotes-featured .quote--featured p {
    font-size: clamp(18px, 4.5vw, 22px);
  }
  .quotes-band {
    padding: 28px 0 32px;
  }
  .human-band.flip img, .human-band img { order: 0; min-height: 220px; }
  .human-band .copy, .human-band.flip .copy { padding: 24px; }
  .nav-links { display: none; }
  .proof-row span { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding: 10px 0; }
  .product-card { grid-template-columns: 1fr; }
  .product-card > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .logo img { height: 40px; max-width: 200px; }
  .logo .logo-meta { display: none; }

  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logo-tile { padding: 16px 14px; }
  .logo-tile img { max-height: 56px; }
  .spot-panel .logo-row img {
    height: 96px;
  }
}

/* ========== Success stories ========== */
.story-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
}

.story-chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,.12);
}

.hero-page .story-chip {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
}

.story-stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.story-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0;
}

.story-stat {
  text-align: center;
  padding: 8px 16px;
  border-left: 1px solid var(--line);
}

.story-stat:first-child { border-left: 0; }

.story-stat .stat-num {
  display: block;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.story-stat .stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.4;
}

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

.story-csr-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-csr-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
}

.story-csr-card.story-csr--solution::before {
  background: linear-gradient(90deg, var(--navy), var(--red));
}

.story-csr-card.story-csr--results::before {
  background: var(--red);
}

.story-csr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}

.story-csr-card h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}

.story-csr-card p,
.story-csr-card ul {
  color: var(--slate);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.story-csr-card ul {
  padding-left: 1.15em;
}

.story-csr-card ul { margin-top: 14px; }
.story-csr-card li { margin-bottom: 6px; }
.story-csr-card li:last-child { margin-bottom: 0; }

.story-pull {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.story-pull blockquote {
  margin: 0 auto;
  max-width: 42em;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.story-pull blockquote::before {
  content: "“";
  display: block;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(196, 30, 58, .4);
  margin-bottom: 8px;
}

.story-pull p {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 20px;
}

.story-pull cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.story-pull .cite-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.story-pull .cite-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
}

.story-narrative {
  max-width: 40em;
  margin: 0 auto;
}

.story-narrative p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 18px;
}

.story-narrative p:last-child { margin-bottom: 0; }

.story-related h2 {
  text-align: center;
  margin-bottom: 10px;
}

.story-related .lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.story-related .press-grid {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .story-stats-row,
  .story-csr {
    grid-template-columns: 1fr;
  }
  .story-stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 8px;
  }
  .story-stat:first-child { border-top: 0; }
  .story-stats-row { padding: 12px 0; }
}

/* Story hub + client success-story cards */
.story-card-client {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 2px;
}

.stories-hub-band,
.success-stories-band {
  background: linear-gradient(180deg, #fbfcfe 0%, var(--paper) 40%, #eef3f8 100%);
  border-top: 1px solid rgba(217, 226, 236, .7);
  border-bottom: 1px solid rgba(217, 226, 236, .7);
}

.story-hub-grid,
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px auto 0;
  max-width: 960px;
  text-align: left;
}

.story-hub-card,
.success-story-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.story-hub-card::before,
.success-story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}

.story-hub-card:hover,
.success-story-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.story-hub-card:hover .press-read,
.success-story-card:hover .press-read {
  color: var(--red);
}

.story-hub-card .press-title,
.success-story-card .press-title {
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.3;
}

.story-hub-card .press-blurb,
.success-story-card .press-blurb {
  font-size: 15px;
}

.press-section-quiet {
  padding-top: 56px;
}

.press-section-quiet .press-card {
  box-shadow: none;
  background: var(--paper);
}

.press-section-quiet .press-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .story-hub-grid,
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
}


.about-trust .trust-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.about-trust .trust-header h2,
.about-trust .trust-header .lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-trust .trust-quotes {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .about-trust .trust-quotes {
    grid-template-columns: 1fr;
  }
}


/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 28px;
  align-items: start;
}
.contact-form-card,
.contact-side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 28px 30px;
}
.contact-form-card h2,
.contact-side-card h2 {
  margin: 0 0 8px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 26px;
}
.contact-form-card .lede-mini {
  margin: 0 0 22px;
  color: var(--slate);
  font-size: 15px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.contact-form .optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--slate);
  font-size: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18, 58, 111, .15);
  background: #fff;
}
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.contact-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.contact-form .form-note {
  font-size: 13px;
  color: var(--slate);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.contact-side-card ul {
  margin: 0 0 18px;
  padding-left: 1.15em;
  color: var(--ink-2);
}
.contact-side-card li { margin-bottom: 8px; }
.contact-side-card .side-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.contact-side-card .side-meta strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-side-card a { color: var(--navy); font-weight: 600; }
.contact-side-card a:hover { color: var(--red); }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Legal prose pages */
.legal-wrap {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 72px;
}
.legal.prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 40px 42px;
}
.legal.prose .meta {
  margin: 0 0 1.4rem;
  color: var(--ink-2);
  font-size: 15px;
}
.legal.prose .meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.legal.prose h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.35rem;
  margin: 2rem 0 .65rem;
  color: var(--navy-deep);
}
.legal.prose h3 {
  font-size: 1.05rem;
  margin: 1.35rem 0 .4rem;
  color: var(--ink);
}
.legal.prose p,
.legal.prose li {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
}
.legal.prose ul,
.legal.prose ol { padding-left: 1.2rem; }
.legal.prose a { color: var(--navy); font-weight: 600; }
.legal.prose a:hover { color: var(--red); }
.legal.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
  font-size: .98rem;
}
.legal.prose th,
.legal.prose td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal.prose th {
  background: var(--navy-deep);
  color: #fff;
  font-weight: 600;
}
.legal.prose .callout {
  border: 1px solid var(--navy);
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  margin: 1.2rem 0 1.6rem;
  background: #f8fafc;
  border-radius: var(--radius-sm);
}
.legal.prose .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0 1.6rem;
}
.legal.prose .badge {
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 8px 12px;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
.legal.prose .footer-note {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  color: var(--slate);
}
@media (max-width: 560px) {
  .legal.prose { padding: 24px 20px 28px; }
}


.spot-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.spot-split-copy {
  min-width: 0;
}

.spot-split-media {
  margin: 0;
  min-width: 0;
}

.spot-split-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.spot-split-media figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

@media (max-width: 860px) {
  .spot-split {
    grid-template-columns: 1fr;
  }
}

/* Story case-study PDF download band */
.story-pdf-band {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(11, 37, 69, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 55%, #fff5f5 100%);
}
.story-pdf-band h2 {
  margin: 6px 0 8px;
  font-size: 1.45rem;
}
.story-pdf-band .lede {
  margin: 0;
  max-width: 36rem;
}
@media (max-width: 720px) {
  .story-pdf-band { padding: 22px 20px; }
}


/* —— Pay / checkout —— */
.pay-layout {
  max-width: 720px;
  margin: 0 auto;
}
.pay-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 28px 22px;
}
.pay-warn {
  background: #fff8e6;
  border: 1px solid #c9a227;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 0 0 1.1rem;
  color: var(--ink-2);
  font-size: 0.98rem;
}
.pay-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin: 0 0 1.4rem;
  overflow: hidden;
}
.pay-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.pay-summary-row:last-child { border-bottom: 0; }
.pay-summary-total {
  font-weight: 600;
  background: var(--paper);
}
.pay-amount-display { font-weight: 700; color: var(--navy); white-space: nowrap; }
.pay-muted { color: var(--slate); font-size: 0.95rem; margin: 0.25rem 0 0; }
.pay-form h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.35rem;
  margin: 0.25rem 0 0.85rem;
  color: var(--navy-dark);
}
.pay-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.75rem 0 0.35rem;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0;
}
.pay-form .optional { font-weight: 500; color: var(--slate); }
.pay-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  color: var(--ink);
}
.pay-form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18, 58, 111, .15);
}
.pay-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) {
  .pay-grid2 { grid-template-columns: 1fr; }
  .pay-card { padding: 20px 16px; }
}
.pay-secure-note {
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 1.2rem 0 1.1rem;
  font-size: 0.96rem;
  color: var(--ink-2);
  background: var(--paper);
}
.pay-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1.05rem;
}
.pay-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.pay-status {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 1.4em;
}
.pay-status.err { color: #a40000; }
.pay-status.ok { color: #0a6b2d; }
.pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0 0;
}
.pay-badge {
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 6px 10px;
  font-size: 0.75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}
.pay-footer-note {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.55;
}
