:root {
  --bg: #f2f5f7;
  --bg-soft: #fbfcfd;
  --bg-strong: #e8ecef;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-muted: #eef2f4;
  --line: rgba(43, 49, 56, 0.1);
  --line-strong: rgba(43, 49, 56, 0.16);
  --text: #20262c;
  --title: #171c22;
  --muted: #67717b;
  --brand: #d3a34a;
  --brand-strong: #b9852f;
  --brand-ink: #4c3408;
  --accent: #6fae9f;
  --navy: #2b3138;
  --brand-rgb: 211, 163, 74;
  --accent-rgb: 111, 174, 159;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 39, 46, 0.1);
  --shadow-soft: 0 12px 30px rgba(31, 39, 46, 0.06);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(var(--brand-rgb), 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(var(--accent-rgb), 0.18), transparent 22%),
    linear-gradient(180deg, #fcfdfe 0%, #f3f5f7 56%, #edf1f3 100%);
  line-height: 1.65;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(223, 151, 34, 0.18);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #7e5616;
  font: 600 0.88rem/1 'Source Sans 3', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(250, 252, 253, 0.88);
  border-bottom: 1px solid rgba(43, 49, 56, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 236px;
  height: auto;
  object-fit: contain;
}

.home-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.home-page.home-header-scrolled .site-header {
  backdrop-filter: blur(20px);
  background: rgba(250, 252, 253, 0.92);
  border-bottom-color: rgba(43, 49, 56, 0.08);
  box-shadow: 0 14px 28px rgba(31, 39, 46, 0.08);
}

.home-page .site-header .brand {
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font: 700 1.12rem/1 'Source Sans 3', sans-serif;
}

.nav-links a,
.nav-dropdown-trigger {
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(var(--accent-rgb), 0.72));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: var(--title);
}

.nav-links a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger:hover::after {
  transform: scaleX(1);
}

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

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 300px);
  height: 0.7rem;
}

.nav-dropdown-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font: inherit;
}

.nav-dropdown-caret {
  color: var(--accent);
  font-size: 0.76rem;
  transition: transform 0.18s ease;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 0;
  min-width: 300px;
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 42, 56, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(63, 46, 21, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  z-index: 60;
}

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

.nav-dropdown-menu a {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  color: var(--navy);
  font: 700 1rem/1.35 'Source Sans 3', sans-serif;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: rgba(var(--brand-rgb), 0.12);
}

.nav-dropdown-menu a.is-active {
  color: var(--brand-ink);
}

.cta-row,
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.header-cta-row {
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-nav summary {
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker,
.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-toggle,
.mobile-nav-group > summary {
  cursor: pointer;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 56, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font: 700 0.92rem/1 'Source Sans 3', sans-serif;
  box-shadow: var(--shadow-soft);
}

.mobile-nav[open] .mobile-nav-toggle {
  background: #ffffff;
}

.mobile-nav-icon {
  display: grid;
  gap: 3px;
  width: 18px;
}

.mobile-nav-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-nav[open] .mobile-nav-icon span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.mobile-nav[open] .mobile-nav-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] .mobile-nav-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 80;
  width: min(340px, calc(100vw - 1.2rem));
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(31, 42, 56, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(63, 46, 21, 0.14);
}

.mobile-nav-menu > a,
.mobile-nav-group > summary,
.mobile-nav-feature-links a {
  display: block;
  padding: 0.82rem 0.9rem;
  border-radius: 14px;
  color: var(--navy);
  font: 700 1.04rem/1.3 'Source Sans 3', sans-serif;
}

.mobile-nav-menu > a:hover,
.mobile-nav-group > summary:hover,
.mobile-nav-feature-links a:hover,
.mobile-nav-feature-links a.is-active,
.mobile-nav-group[open] > summary {
  background: rgba(var(--brand-rgb), 0.12);
}

.mobile-nav-feature-links a.is-active {
  color: var(--brand-ink);
}

.mobile-nav-group {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav-feature-links {
  display: grid;
  gap: 0.25rem;
  padding-left: 0.5rem;
}

.mobile-nav-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(31, 42, 56, 0.08);
}

.mobile-nav-actions .btn {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font: 700 0.96rem/1 'Source Sans 3', sans-serif;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, #2f3740, #1b2128);
  border-color: rgba(23, 28, 34, 0.18);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 28, 34, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #242b32, #12171d);
  box-shadow: 0 22px 40px rgba(23, 28, 34, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(43, 49, 56, 0.14);
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(23, 28, 34, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(23, 28, 34, 0.1);
}

.btn-offer {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: rgba(22, 163, 74, 0.32);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.24);
}

.btn-offer:hover {
  background: linear-gradient(135deg, #34d873, #15803d);
  box-shadow: 0 22px 40px rgba(22, 163, 74, 0.3);
}

.hero {
  position: relative;
  padding: 2.75rem 0 4rem;
  overflow: hidden;
}

.home-page .hero {
  padding-top: 2.15rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.hero::before {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -110px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.28), transparent 70%);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--title);
  font-family: 'Source Sans 3', sans-serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 62ch;
  font-size: 1.22rem;
  line-height: 1.62;
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.stat,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 1rem 1.1rem;
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  margin-bottom: 0.24rem;
  font-size: 1.12rem;
  color: var(--navy);
}

.hero-panel {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94));
}

.app-shot {
  padding: 1rem;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, #233344 0%, #33495f 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.shot-top {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.dot:first-child {
  background: #ffd378;
}

.dot:nth-child(2) {
  background: #9fe1ca;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}

.mini {
  min-height: 128px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 31, 43, 0.08);
  color: var(--text);
}

.bar {
  height: 10px;
  margin: 0.55rem 0;
  border-radius: 999px;
  background: rgba(36, 52, 69, 0.08);
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #f6cf73 55%, var(--accent));
}

.hero-copy {
  display: grid;
  align-content: start;
  max-width: 74rem;
  gap: 1.35rem;
}

.hero-mark {
  display: block;
  width: clamp(352px, 38vw, 500px);
  height: auto;
  margin: 0 auto 0.55rem;
}

.home-page .hero-copy,
.home-page .hero-copy h1,
.home-page .hero-copy .lead {
  max-width: none;
}

.home-page .hero-copy h1 {
  font-size: clamp(2.05rem, 3.45vw, 3.45rem);
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.home-page .hero-copy .lead {
  margin-inline: auto;
  margin-top: 0;
  text-align: center;
}

.hero-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin: 1.55rem 0 0;
  padding: 1.2rem 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.28), transparent 34%),
    linear-gradient(135deg, #ecfdf3 0%, #f7fff9 52%, #ffffff 100%);
  border-color: rgba(34, 197, 94, 0.32);
  box-shadow: 0 24px 44px rgba(22, 163, 74, 0.16);
  overflow: hidden;
}

.hero-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.52) 35%, transparent 65%);
  transform: translateX(-140%);
  animation: hero-offer-sheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-offer-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 54px rgba(22, 163, 74, 0.22);
  border-color: rgba(34, 197, 94, 0.42);
}

.hero-offer-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.42rem;
}

.hero-offer-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #166534;
  font: 700 0.8rem/1 'Source Sans 3', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.12);
}

.hero-offer-copy strong {
  color: var(--navy);
  font: 700 clamp(1.22rem, 2vw, 1.5rem)/1.1 'Source Sans 3', sans-serif;
}

.hero-offer-copy span:last-child {
  color: var(--muted);
}

.hero-offer-subnote {
  color: #7c7367;
  font-size: 0.84rem;
}

.hero-offer-link {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.08rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.34);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font: 700 0.98rem/1 'Source Sans 3', sans-serif;
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.22);
}

.hero-panel.hero-proof {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem;
}

.hero-proof-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.55rem;
  align-items: start;
}

.hero-proof-head h3 {
  margin-bottom: 0;
  font-size: 1.42rem;
}

.hero-shot-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: start;
}

.hero-shot-card,
.hero-gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0.62rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff);
}

.hero-shot-card-featured {
  grid-column: auto;
  width: 100%;
  justify-self: stretch;
}

.hero-shot-card-featured .hero-shot-media {
  aspect-ratio: 16 / 10;
}

.hero-shot-card-featured .hero-shot-caption strong {
  font-size: 1.08rem;
}

.hero-shot-card,
.hero-gallery-card,
.carousel {
  border: 1px solid rgba(31, 42, 56, 0.08);
}

.shot-browser-bar {
  display: flex;
  gap: 0.38rem;
  align-items: center;
  padding: 0.1rem 0 0.7rem;
}

.shot-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(36, 52, 69, 0.18);
}

.shot-browser-bar span:first-child {
  background: #ffb26b;
}

.shot-browser-bar span:nth-child(2) {
  background: #ffd978;
}

.shot-browser-bar span:nth-child(3) {
  background: #8fd7ba;
}

.hero-shot-media,
.hero-gallery-media,
.slide-media {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #efe3d4 0%, #e4d7c5 100%);
  border: 1px solid rgba(31, 42, 56, 0.08);
}

.hero-shot-media,
.hero-gallery-media {
  aspect-ratio: 16 / 10;
}

.home-page .hero-shot-media,
.home-page .screenshot-marquee-media {
  aspect-ratio: 1486 / 876;
}

.slide-media {
  height: 100%;
}

.hero-shot-media img,
.hero-shot-media video,
.hero-gallery-media img,
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-media img.hero-shot-image-contain {
  object-fit: contain;
  background: #faf6f0;
}

.hero-shot-media img.hero-shot-image-cover {
  object-fit: cover;
  object-position: center center;
}

.feature-page .hero-shot-media {
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.feature-page .hero-shot-media img,
.feature-page .hero-shot-media video {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  background: #faf6f0;
}

.shot-placeholder {
  height: 100%;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(var(--brand-rgb), 0.18), rgba(var(--accent-rgb), 0.16));
  color: var(--navy);
}

.shot-placeholder strong {
  font: 700 1.28rem/1.05 'Source Sans 3', sans-serif;
}

.shot-placeholder p {
  margin: 0;
  max-width: 32ch;
  color: rgba(23, 33, 43, 0.78);
}

.shot-placeholder-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 42, 56, 0.08);
  font: 700 0.76rem/1 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-shot-caption,
.hero-gallery-copy {
  display: grid;
  gap: 0.28rem;
  padding-top: 0.45rem;
}

.hero-shot-caption strong,
.hero-gallery-copy strong {
  color: var(--navy);
  font: 700 1rem/1.2 'Source Sans 3', sans-serif;
}

.hero-shot-caption span,
.hero-gallery-copy span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.home-page .hero-shot-caption span {
  display: block;
  margin-top: 0.1rem;
  font-size: 1rem;
  line-height: 1.55;
}

.home-stats-section {
  padding: 0.5rem 0 2.5rem;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 56, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.home-stat-card {
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(31, 42, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(238, 246, 255, 0.62));
  text-align: center;
}

.home-stat-card:last-child {
  border-right: 0;
}

.home-stat-card strong {
  display: block;
  color: var(--navy);
  font: 800 clamp(1.8rem, 2.6vw, 2.65rem)/1 'Source Sans 3', sans-serif;
  letter-spacing: -0.03em;
}

.home-stat-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.32;
}

.hero-proof-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
  justify-content: center;
}

.hero-proof-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 56, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font: 700 0.86rem/1 'Source Sans 3', sans-serif;
}

.hero-proof-links a:hover {
  background: #ffffff;
}

.screenshot-carousel-section {
  padding-top: 1.1rem;
}

.screenshot-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.screenshot-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: screenshot-scroll 46s linear infinite;
}

.screenshot-marquee:hover .screenshot-marquee-track {
  animation-play-state: paused;
}

.screenshot-marquee-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 0 0 min(420px, 88vw);
  max-width: 420px;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff);
}

.screenshot-marquee-media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #efe3d4 0%, #e4d7c5 100%);
  border: 1px solid rgba(31, 42, 56, 0.08);
}

.screenshot-marquee-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #faf6f0;
}

.screenshot-marquee-copy {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.85rem;
}

.screenshot-marquee-copy strong {
  color: var(--navy);
  font: 700 1rem/1.2 'Source Sans 3', sans-serif;
}

.screenshot-marquee-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.screenshot-card-trigger {
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.screenshot-card-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--brand-rgb), 0.24);
  box-shadow: 0 18px 36px rgba(63, 46, 21, 0.14);
}

.screenshot-preview-modal[hidden] {
  display: none !important;
}

.screenshot-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.82);
}

.screenshot-preview-modal__panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(92vh, 1000px);
  display: grid;
  gap: 1rem;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.screenshot-preview-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.screenshot-preview-modal__media {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0.75rem;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #f8fafc;
  overflow: hidden;
}

.screenshot-preview-modal__media img {
  width: 100%;
  height: min(70vh, 720px);
  object-fit: contain;
}

.screenshot-preview-modal__copy {
  display: grid;
  gap: 0.35rem;
}

.screenshot-preview-modal__copy h2 {
  margin-bottom: 0;
  color: #0f172a;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.screenshot-preview-modal__copy p {
  margin: 0;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.62;
}

.demo-popup-host {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.slide-placeholder {
  border: 0;
  border-radius: 0;
}

section {
  padding: 4.25rem 0;
}

.home-page #features {
  padding-top: 2.5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
}

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

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

.feature-card {
  display: grid;
  align-content: start;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), #ffffff);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 151, 34, 0.24);
  box-shadow: 0 24px 48px rgba(63, 46, 21, 0.14);
}

.feature-card-title {
  display: block;
  margin: 0 0 1rem;
  color: var(--title);
  font: 700 1.28rem/1.05 'Source Sans 3', sans-serif;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  color: var(--accent);
  font: 700 0.96rem/1 'Source Sans 3', sans-serif;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.24), rgba(var(--accent-rgb), 0.18));
  border: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--navy);
  font-size: 1.28rem;
}

.feature-card-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: -0.45rem 0 0;
  color: var(--accent);
  font: 800 0.74rem/1 'Source Sans 3', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0.95rem 0 0;
  font-size: 1.04rem;
  line-height: 1.7;
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.24), rgba(var(--accent-rgb), 0.18));
  border: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--navy);
  font-size: 1.28rem;
}

.muted {
  color: var(--muted);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 34%),
    linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
  border-color: rgba(59, 130, 246, 0.18);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18), transparent 70%);
}

.pricing-page-card-wrap {
  display: flex;
  justify-content: center;
}

.legacy-page-pricing .feature-detail {
  padding-bottom: 1.5rem;
}

.legacy-page-pricing .feature-detail + section {
  padding-top: 1.5rem;
}

.legacy-page-testimonials .feature-detail {
  padding-bottom: 1.5rem;
}

.legacy-page-testimonials .feature-detail + section {
  padding-top: 1.5rem;
}

.legacy-page-features-faqs .feature-detail {
  padding-bottom: 1.5rem;
}

.legacy-page-features-faqs .feature-detail + section {
  padding-top: 1.5rem;
}

.pricing-home-wrap {
  display: grid;
  gap: 1.7rem;
}

.pricing-home-copy {
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

.pricing-home-copy h2 {
  margin-bottom: 0;
}

.pricing-home-copy .lead,
.pricing-home-copy .muted {
  max-width: none;
  margin: 0;
}

.home-page .section-head {
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.home-page .section-head > div {
  width: 100%;
}

.home-page .section-head p {
  max-width: none;
}

.home-page .pricing-home-copy {
  justify-items: center;
  text-align: center;
}

.pricing-card-centered {
  width: min(100%, 900px);
  margin-inline: auto;
}

.home-page .pricing-card-centered {
  text-align: center;
  font-size: 1.06rem;
}

.home-page .pricing-card-centered .price,
.home-page .pricing-card-centered .pricing-card-actions {
  justify-content: center;
}

.home-page .pricing-card-centered .list li {
  text-align: center;
}

.legacy-page-pricing .pricing-card-centered {
  text-align: center;
  font-size: 1.06rem;
}

.legacy-page-pricing .pricing-card-centered .price,
.legacy-page-pricing .pricing-card-centered .pricing-card-actions {
  justify-content: center;
}

.legacy-page-pricing .pricing-card-centered .list li {
  text-align: center;
}

.pricing-included-note {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font: 700 0.98rem/1.45 'Source Sans 3', sans-serif;
}

.pricing-note-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.pricing-note-row-centered {
  justify-content: center;
}

.pricing-note-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.pricing-note-link:hover {
  color: var(--navy);
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--modal-scrollbar-compensation, 0px);
}

.pricing-modal[hidden] {
  display: none !important;
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.78);
}

.pricing-modal__panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(88vh, 900px);
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.pricing-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.86);
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.pricing-modal__header {
  padding-right: 3rem;
  margin-bottom: 1rem;
}

.pricing-modal__header h2 {
  margin-bottom: 0.35rem;
  color: #0f172a;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
}

.pricing-modal__header p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
}

.pricing-modal__table-wrap {
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 16px;
  background: #ffffff;
  overflow: auto;
}

.pricing-modal__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.pricing-modal__col-bays,
.pricing-modal__col-discount {
  width: 32%;
}

.pricing-modal__col-rate {
  width: 36%;
}

.pricing-modal__table th,
.pricing-modal__table td {
  padding: 15px 16px;
  border-bottom: 1px solid #e6ebf3;
  text-align: left;
}

.pricing-modal__table th:nth-child(2),
.pricing-modal__table td:nth-child(2) {
  text-align: center;
}

.pricing-modal__table thead th {
  background: #eef3f8;
  color: #64748b;
  font: 700 0.76rem/1 'Source Sans 3', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-modal__table tbody tr:nth-child(even) td {
  background: #f3f6fa;
}

.pricing-modal__table tbody tr:hover td {
  background: #eaf1f8;
}

.pricing-modal__table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-modal__rate {
  color: #0f3f9a;
  font-size: 1.08rem;
  font-weight: 800;
}

.pricing-highlights {
  margin-top: 1.2rem;
}

.pricing-highlights li {
  padding: 0.9rem 0;
  font-size: 1.08rem;
}

.pricing-card-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  margin: 1rem 0;
}

.price strong {
  font-size: 3.8rem;
  line-height: 1;
  color: var(--navy);
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--muted);
}

.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff7eb 100%);
}

.quote p {
  position: relative;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--navy);
}

.quote-brand {
  display: flex;
  align-items: center;
  min-height: 0;
  margin-bottom: 0.15rem;
}

.quote-brand img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 32px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.quote footer {
  margin-top: auto;
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
}

.quote footer strong {
  color: var(--navy);
  font-weight: 700;
}

.quote footer span {
  font-weight: 600;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: testimonial-scroll 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.quote-marquee {
  flex: 0 0 min(360px, 84vw);
  max-width: 360px;
}

.home-page .quote-marquee {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 245, 247, 0.98) 100%);
  border-color: rgba(43, 49, 56, 0.1);
  box-shadow: 0 16px 34px rgba(23, 28, 34, 0.08);
}

.home-page .quote-marquee::before {
  background: linear-gradient(135deg, rgba(43, 49, 56, 0.1), rgba(var(--brand-rgb), 0.12));
}

.quote-marquee p {
  margin: 0;
}

.home-page .quote-marquee p {
  font-size: 1.12rem;
  line-height: 1.68;
}

.section-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.home-page #testimonials .section-actions {
  justify-content: center;
}

.about-section {
  padding-top: 1rem;
}

.about-story-card {
  margin-bottom: 2rem;
  padding: 0;
  background: transparent;
}

.about-story-card p {
  max-width: 78ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.about-story-card p + p {
  margin-top: 1rem;
}

.about-culture-head {
  margin-top: 0.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.about-card {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.about-card p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-card-wide {
  grid-column: auto;
}

.about-card p {
  margin: 0;
}

.about-section-subhead {
  max-width: none;
  margin: -0.15rem 0 0.8rem !important;
  color: var(--navy);
  font-size: 1.16rem !important;
  line-height: 1.6 !important;
}

.screenshot-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.carousel {
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), #ffffff);
}

.carousel-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 56, 0.08);
  background: #f1e6d8;
}

.slide[hidden] {
  display: none !important;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
  transition: opacity 0.35s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e9dccb;
}

.slide-caption {
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(31, 42, 56, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.slide-caption strong {
  display: block;
  color: var(--navy);
  font: 700 1.02rem/1.2 'Source Sans 3', sans-serif;
}

.slide-caption p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.carousel-buttons {
  display: flex;
  gap: 0.6rem;
}

.carousel-buttons button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 42, 56, 0.14);
  background: #ffffff;
  color: var(--navy);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.carousel-buttons button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(63, 46, 21, 0.12);
  border-color: rgba(223, 151, 34, 0.24);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(36, 52, 69, 0.22);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active {
  background: var(--accent);
}

.screenshot-copy {
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fffaf3);
}

.faq details {
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.faq details[open] {
  border-color: rgba(var(--accent-rgb), 0.22);
}

.faq details + details {
  margin-top: 0.8rem;
}

.faq summary {
  cursor: pointer;
  font-size: 1.16rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
}

.faq p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.faq-inline-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.faq-inline-link:hover {
  color: var(--navy);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-card,
.contact-form {
  padding: 1.4rem;
}

.contact-card {
  background: linear-gradient(180deg, #fff9f1 0%, #ffffff 100%);
}

.contact-card a,
.footer a:hover {
  color: var(--navy);
}

.contact-form {
  background: var(--surface-strong);
}

.contact-form-intro {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-point {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-point strong {
  color: var(--navy);
}

.contact-point span {
  color: var(--accent);
  font-weight: 700;
}

.contact-point:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 14px 26px rgba(23, 28, 34, 0.08);
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 56, 0.14);
  background: #ffffff;
  color: var(--title);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

input::placeholder,
textarea::placeholder {
  color: #8993a1;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(var(--brand-rgb), 0.32);
  outline-offset: 0;
  border-color: rgba(var(--brand-rgb), 0.4);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 42, 56, 0.1);
  text-align: center;
}

.footer-brand strong {
  color: var(--navy);
}

.footer-copyright {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.footer-action-row {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 56, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  font: 700 0.88rem/1 'Source Sans 3', sans-serif;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link svg rect,
.footer-social-link svg circle {
  fill: none;
  stroke: currentColor;
}

.footer-social-link svg path {
  fill: none;
  stroke: currentColor;
}

.footer-social-link svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(23, 28, 34, 0.08);
}

.footer-email-link {
  border-color: rgba(var(--brand-rgb), 0.24);
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--navy);
}

.footer-facebook-link {
  background: #1877f2;
  color: #ffffff;
}

.footer-x-link {
  background: #111111;
  color: #ffffff;
}

.footer-youtube-link {
  background: #ff0000;
  color: #ffffff;
}

.footer-linkedin-link {
  background: #0a66c2;
  color: #ffffff;
}

.footer-instagram-link {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
  color: #ffffff;
}

.footer-google-link {
  background: #ffffff;
  border-color: rgba(66, 133, 244, 0.28);
  color: #4285f4;
}

.feature-page .nav {
  min-height: 92px;
}

.feature-detail {
  padding: 1.55rem 0 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  color: var(--accent);
  font: 700 0.92rem/1 'Source Sans 3', sans-serif;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}

.feature-detail-copy {
  display: grid;
  gap: 0.95rem;
}

.feature-detail-editorial-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.feature-detail-copy h1 {
  margin-bottom: 0;
}

.feature-detail-body {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}

.feature-detail-editorial .feature-detail-grid {
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.feature-detail-editorial .feature-detail-copy,
.feature-detail-editorial .feature-detail-copy h1,
.feature-detail-editorial .feature-detail-copy .lead,
.feature-detail-editorial .feature-detail-body {
  max-width: none;
}

.feature-detail-editorial .feature-detail-copy {
  gap: 1.35rem;
}

.feature-detail-editorial .feature-detail-copy h1 {
  font-size: clamp(3rem, 4.4vw, 4.7rem);
  line-height: 0.98;
  text-align: center;
}

.feature-detail-editorial .feature-detail-editorial-copy {
  gap: 1.15rem;
}

.feature-detail-editorial .feature-detail-editorial-copy .lead {
  grid-column: 1 / -1;
  margin: 0 0 0.35rem;
  font-size: 1.34rem;
  line-height: 1.65;
  color: var(--navy);
}

.feature-detail-editorial .feature-detail-body {
  font-size: 1.06rem;
  line-height: 1.85;
}

.feature-integrators {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  width: 100%;
  margin: 0.5rem auto 0;
  padding: 0;
  border: 1px solid rgba(31, 42, 56, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-integrators > span {
  display: block;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--navy);
  font: 800 1.08rem/1.2 'Source Sans 3', sans-serif;
}

.feature-integrator-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: stretch;
  gap: 0;
}

.feature-integrator-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: #ffffff;
}

.feature-integrator-logos a + a {
  border-left: 1px solid rgba(31, 42, 56, 0.08);
}

.feature-integrator-logos img {
  width: 100%;
  height: 92px;
  padding: 1.05rem 1.35rem;
  object-fit: contain;
}

.feature-integrator-logos img[alt="Paystack"] {
  transform: scale(0.82);
}

.feature-integrator-logos a > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem;
  color: var(--navy);
  font: 700 1.06rem/1.2 'Source Sans 3', sans-serif;
  text-align: center;
}

.feature-detail-media-card,
.feature-detail-panel {
  margin: 0;
  padding: 1rem;
}

.feature-page .feature-detail-media-card {
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  padding: 0.75rem;
}

.feature-page .hero-shot-caption {
  width: 100%;
  align-self: stretch;
}

.feature-page .feature-feature-carousel {
  width: fit-content;
  max-width: 100%;
}

.feature-page .feature-feature-carousel .carousel-stage {
  aspect-ratio: auto;
  border: 0;
  background: transparent;
  overflow: visible;
}

.feature-page .feature-feature-carousel .slide {
  position: relative;
  inset: auto;
  opacity: 1;
  display: grid;
  gap: 0.7rem;
  background: transparent;
  transition: none;
}

.feature-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.25rem 0 0.2rem;
}

.feature-carousel-toolbar .feature-carousel-buttons {
  margin-left: auto;
}

.feature-page .feature-feature-carousel .hero-shot-media {
  position: relative;
}

.feature-carousel-count {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: rgba(23, 28, 34, 0.8);
  color: #f8fafc;
  font: 700 0.78rem/1 'Source Sans 3', sans-serif;
  letter-spacing: 0.03em;
}

.feature-page .feature-feature-carousel .slide-caption {
  width: 100%;
  padding: 0.15rem 0 0;
  border-top: 0;
  background: transparent;
}

.feature-carousel-caption-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.feature-carousel-caption-head strong {
  margin: 0;
  font-size: 1.08rem;
}

.feature-page .feature-feature-carousel .feature-carousel-buttons {
  flex-shrink: 0;
}

.feature-page .feature-feature-carousel .feature-carousel-buttons button {
  width: 42px;
  height: 42px;
}

.feature-detail-editorial .contact-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.feature-detail-feature-grid {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 42, 56, 0.08);
}

.feature-pager-link {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(31, 42, 56, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-pager-link:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.24);
  box-shadow: 0 18px 34px rgba(23, 28, 34, 0.1);
}

.feature-pager-link strong {
  color: var(--navy);
  font: 800 1.14rem/1.2 'Source Sans 3', sans-serif;
}

.feature-pager-link-prev strong::before {
  content: "\2190";
  margin-right: 0.35rem;
  color: var(--accent);
}

.feature-pager-link-next {
  justify-content: flex-end;
  text-align: right;
}

.feature-pager-link-next strong::after {
  content: "\2192";
  margin-left: 0.35rem;
  color: var(--accent);
}

.feature-cta-band {
  padding-top: 1.5rem;
}

.feature-cta-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
}

.home-page .feature-cta-card {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.25), transparent 38%),
    linear-gradient(135deg, #13291d 0%, #18382a 52%, #203244 100%);
  border-color: rgba(34, 197, 94, 0.28);
  color: #ffffff;
  box-shadow: 0 24px 52px rgba(19, 41, 29, 0.2);
}

.home-page .feature-cta-card h2 {
  color: #ffffff;
}

.home-page .feature-cta-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.62;
}

.home-page .feature-cta-card .cta-row {
  justify-content: center;
}

.seo-note {
  margin-top: 1.4rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  color: #6c5327;
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
}

code.inline {
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(36, 52, 69, 0.08);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92em;
}

::selection {
  background: rgba(var(--brand-rgb), 0.28);
  color: var(--title);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.35);
  outline-offset: 3px;
}

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

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

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

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

@keyframes hero-offer-sheen {
  0%,
  18% {
    transform: translateX(-140%);
  }

  42% {
    transform: translateX(140%);
  }

  100% {
    transform: translateX(140%);
  }
}

@media (min-width: 981px) {
  .home-page .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .home-page .nav-links {
    justify-self: center;
  }

  .home-page .header-cta-row {
    justify-self: end;
  }

  .home-page:not(.home-header-scrolled) .site-header .brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .home-page.home-header-scrolled .site-header .brand {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 980px) {
  .home-page .nav {
    display: flex;
  }

  .home-page .hero-mark {
    display: none;
  }

  .hero-grid,
  .contact-wrap,
  .grid-3,
  .grid-2,
  .home-stats-grid,
  .about-grid,
  .feature-detail-grid,
  .feature-detail-editorial-copy,
  .dashboard-grid,
  .screenshot-wrap {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 78px;
    padding: 0.75rem 0;
    gap: 0.8rem;
  }

  .nav-links,
  .header-cta-row {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .hero-offer {
    flex-direction: column;
    align-items: start;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .brand img {
    width: 206px;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .home-page .hero {
    padding-top: 2rem;
  }

  h1 {
    max-width: none;
  }

  .hero-mark {
    width: min(348px, 80vw);
  }

  .hero-shot-card-featured {
    transform: none;
    width: 100%;
  }

  .hero-proof-head,
  .hero-shot-stack {
    grid-template-columns: 1fr;
  }

  .quote-marquee {
    flex-basis: min(320px, 86vw);
  }

  .feature-card p {
    display: none;
  }

  .feature-card-link {
    margin-top: 0.75rem;
  }

  .screenshot-marquee-card {
    flex-basis: min(360px, 88vw);
  }

  .about-card-wide {
    grid-column: auto;
  }

  .feature-cta-card {
    flex-direction: column;
    align-items: start;
  }

  .feature-detail-editorial .contact-points {
    grid-template-columns: 1fr;
  }

  .feature-pager {
    grid-template-columns: 1fr;
  }

  .feature-pager-link-next {
    text-align: left;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .brand {
    padding: 0;
  }

  .brand img {
    width: 188px;
  }

  .hero-mark {
    width: min(308px, 84vw);
  }

  .mobile-nav-toggle {
    padding: 0.72rem 0.9rem;
  }

  .mobile-nav-menu {
    width: min(320px, calc(100vw - 1rem));
  }

  .cta-row,
  .hero-actions {
    width: 100%;
  }

  .cta-row .btn,
  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .btn {
    width: 100%;
  }

  .carousel-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-buttons {
    justify-content: flex-start;
  }

  .hero-proof-links,
  .feature-cta-card .cta-row,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof-links a,
  .hero-offer-link {
    justify-content: center;
  }

  .pricing-note-row {
    align-items: stretch;
  }

  .nav-dropdown-menu {
    min-width: 250px;
  }

  .hero-shot-card,
  .carousel {
    padding: 0.75rem;
  }

  .screenshot-marquee-card {
    padding: 0.75rem;
  }

  .screenshot-preview-modal__panel {
    padding: 14px;
  }

  .screenshot-preview-modal__media img {
    height: min(52vh, 420px);
  }

  .pricing-card-actions {
    flex-direction: column;
  }

  .feature-integrator-logos img {
    height: 58px;
    padding: 0.75rem;
  }

  .feature-integrator-logos a {
    border-top: 1px solid rgba(31, 42, 56, 0.08);
  }

  .feature-integrator-logos a:nth-child(-n + 2) {
    border-top: 0;
  }

  .feature-integrator-logos a:nth-child(odd) {
    border-left: 0;
  }

  .feature-integrator-logos img[alt="Paystack"] {
    transform: scale(0.72);
  }

  .shot-placeholder {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee-track,
  .screenshot-marquee-track {
    animation: none;
  }
}


/* User manual page */
.legacy-page-user-manual .feature-detail {
  padding-bottom: 2.5rem;
}

.manual-section {
  padding: 0 0 5rem;
}

.manual-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.manual-toc {
  position: sticky;
  top: 96px;
}

.manual-toc-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 42, 56, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(31, 42, 56, 0.08);
  padding: 1.1rem;
  max-height: calc(100vh - 130px);
  overflow: auto;
}

.manual-toc-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.manual-video-link,
.manual-back-top {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 0.85rem;
}

.manual-toc-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.25rem;
}

.manual-toc-card a:not(.manual-video-link) {
  display: block;
  color: var(--muted);
  line-height: 1.25;
  padding: 0.42rem 0.5rem;
  border-radius: 12px;
  text-decoration: none;
}

.manual-toc-card a:hover,
.manual-toc-card a:focus {
  background: rgba(46, 148, 95, 0.1);
  color: var(--green-dark);
}

.manual-content {
  display: grid;
  gap: 1.1rem;
}

.manual-actions .btn {
  width: auto;
  white-space: nowrap;
}

.manual-card {
  padding: clamp(1.25rem, 2vw, 2rem);
  scroll-margin-top: 110px;
}

.manual-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.manual-step-count {
  flex: 0 0 auto;
  min-width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(46, 148, 95, 0.12);
  color: var(--green-dark);
  font-weight: 900;
}

.manual-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.manual-intro {
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.manual-steps {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.manual-steps li::marker {
  color: var(--green-dark);
  font-weight: 800;
}

.manual-back-top {
  margin: 1rem 0 0;
}

@media (max-width: 980px) {
  .manual-layout {
    grid-template-columns: 1fr;
  }

  .manual-toc {
    position: static;
  }

  .manual-toc-card {
    max-height: none;
  }

  .manual-actions .btn {
    width: 100%;
  }
}
