:root {
  --ink: #142625;
  --ink-soft: #405654;
  --muted: #6d7b78;
  --line: #dbe4df;
  --paper: #fbf8f1;
  --paper-warm: #f4efe4;
  --white: #ffffff;
  --teal: #11615b;
  --teal-deep: #082f2d;
  --aqua: #c9e4dd;
  --coral: #df6d55;
  --gold: #d7a948;
  --shadow: 0 24px 70px rgba(20, 38, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 48px rgba(20, 38, 37, 0.12);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    margin 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  margin-top: 8px;
  box-shadow: 0 12px 34px rgba(20, 38, 37, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
}

.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.brand:hover {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 80px;
  background: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(251, 248, 241, 1) 0%,
      rgba(251, 248, 241, 0.99) 34%,
      rgba(251, 248, 241, 0.9) 52%,
      rgba(251, 248, 241, 0.46) 68%,
      rgba(251, 248, 241, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(251, 248, 241, 0.94) 0%,
      rgba(251, 248, 241, 0.2) 30%,
      rgba(251, 248, 241, 0.96) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 4.8vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subheadline {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-support {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 700;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(17, 97, 91, 0.23);
}

.button-primary:hover {
  background: var(--teal-deep);
}

.button-secondary,
.button-card {
  color: var(--ink);
  border-color: rgba(20, 38, 37, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.button-card {
  width: 100%;
  margin-top: auto;
}

.trust-strip {
  max-width: 520px;
  margin-top: 34px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(17, 97, 91, 0.17);
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.intro-band {
  padding: 30px 20px;
  color: var(--white);
  background: var(--teal-deep);
}

.intro-band p {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 650;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.6vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.plain-copy {
  position: sticky;
  top: 112px;
  padding: 32px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 97, 91, 0.96), rgba(8, 47, 45, 0.98)),
    var(--teal);
  box-shadow: var(--shadow);
}

.plain-copy p {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
}

.example-grid,
.use-case-grid,
.pricing-grid,
.step-row {
  display: grid;
  gap: 16px;
}

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

.example-grid article,
.use-case-grid article,
.step-row article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 38, 37, 0.06);
}

.example-grid article {
  min-height: 150px;
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.example-grid article:hover,
.gap-grid article:hover,
.use-case-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 38, 37, 0.1);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
}

.example-grid p,
.use-case-grid p,
.step-row p,
.price-card p,
.problem-copy p,
.final-cta p {
  color: var(--ink-soft);
}

.example-grid p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 740;
}

.gap {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - 1180px) / 2));
  background: var(--paper-warm);
}

.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gap-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(20, 38, 37, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 38, 37, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.gap-label {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 850;
}

.gap-grid h3 {
  max-width: 280px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.gap-grid p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.urgency {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.urgency-intro {
  position: sticky;
  top: 112px;
}

.urgency-intro p:last-child {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-grid figure {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 38, 37, 0.06);
}

.quote-grid blockquote {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1.12;
}

.quote-grid figcaption {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quote-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 47, 45, 0.96), rgba(17, 97, 91, 0.95)),
    var(--teal-deep);
}

.problem .eyebrow,
.problem-copy p {
  color: var(--aqua);
}

.problem h2 {
  color: var(--white);
}

.pain-list {
  display: grid;
  gap: 12px;
}

.pain-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-height: 64px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.02rem;
  font-weight: 720;
}

.pain-list span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 850;
}

.step-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-row article {
  padding: 26px;
}

.step-row span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-weight: 850;
}

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

.use-case-grid article {
  min-height: 255px;
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.use-case-top {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.use-case-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--teal-deep);
  background: var(--aqua);
  font-size: 0.88rem;
  font-weight: 900;
}

.use-case-grid h3 {
  margin-bottom: 0;
  font-size: 1.34rem;
}

.use-case-grid p {
  margin-bottom: 0;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  gap: 44px;
  align-items: start;
  padding-top: 34px;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  min-height: 60px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 38, 37, 0.06);
  font-weight: 730;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px;
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--teal-deep);
}

.price-card.featured p {
  color: var(--aqua);
}

.plan-label {
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-deep);
  font-weight: 800;
}

.skip-link:focus {
  top: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 38, 37, 0.06);
  transition: box-shadow 180ms ease;
}

.faq-list details[open] {
  box-shadow: 0 18px 40px rgba(20, 38, 37, 0.1);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  margin-left: 12px;
  color: var(--coral);
  font-weight: 900;
}

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

.faq-list details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 36px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 48px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 97, 91, 0.96), rgba(20, 38, 37, 0.98)),
    var(--teal);
  box-shadow: var(--shadow);
}

.final-cta .eyebrow,
.final-cta p {
  color: var(--aqua);
}

.final-cta h2 {
  max-width: 800px;
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.task-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.task-form label {
  display: grid;
  gap: 8px;
}

.task-form span {
  color: var(--aqua);
  font-size: 0.84rem;
  font-weight: 800;
}

.task-form input,
.task-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.task-form textarea {
  resize: vertical;
}

.task-form .button {
  width: 100%;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-col h4 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-brand p {
  max-width: 280px;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

/* ===== Mission band ===== */
.mission {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(223, 109, 85, 0.22), transparent 55%),
    linear-gradient(135deg, var(--teal-deep), #051c1b);
}

.mission-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.mission h2 {
  color: var(--white);
  max-width: 480px;
}

.mission-eyebrow {
  color: var(--coral);
}

.mission p {
  color: var(--aqua);
  font-size: 1.1rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.value-card h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--aqua);
  font-size: 0.95rem;
  font-weight: 500;
}

.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--teal-deep);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

/* ===== Stats row ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-deep);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

/* ===== Article / blog typography ===== */
.article-hero {
  padding: 148px 0 56px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(17, 97, 91, 0.12), transparent 55%),
    var(--paper);
}

.article-hero-inner {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.article-meta .tag {
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.7;
}

.article-body h2 {
  margin-top: 52px;
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.15;
}

.article-body h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.article-body strong {
  color: var(--ink);
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--paper-warm);
  font-style: italic;
  color: var(--ink);
}

.article-body code {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--paper-warm);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95rem;
}

/* ===== Blog index ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 38, 37, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 38, 37, 0.1);
}

.blog-card .tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.blog-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.blog-card .read-more {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
}

/* ===== Pillar SEO page content blocks ===== */
.tldr {
  margin: 0 auto 28px;
  padding: 20px 24px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--paper-warm);
  color: var(--ink);
}

.tldr strong {
  color: var(--teal-deep);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 8px;
  background: var(--paper-warm);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal), var(--teal-deep));
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: calc(50% - 4px);
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.cta-band {
  margin: 56px auto 0;
  padding: 36px;
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--teal), var(--teal-deep));
  text-align: center;
}

.cta-band h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.cta-band p {
  margin: 0 auto 22px;
  max-width: 540px;
  color: var(--aqua);
}

.cta-band .button {
  background: var(--white);
  color: var(--teal-deep);
}

.cta-band .button:hover {
  background: var(--paper);
}

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  padding: 148px 0 64px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(17, 97, 91, 0.14), transparent 55%),
    var(--paper);
}

.page-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

/* Responsive footer + mission + stats */
@media (max-width: 1040px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-meta {
    flex-direction: column;
  }
  .mission-values {
    grid-template-columns: 1fr;
  }
  .mission {
    padding: 58px 14px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    padding: 22px;
  }
  .article-hero {
    padding: 96px 0 32px;
  }
  .page-hero {
    padding: 96px 0 48px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(251, 248, 241, 0.98) 0%,
        rgba(251, 248, 241, 0.86) 52%,
        rgba(251, 248, 241, 0.42) 100%
      ),
      linear-gradient(180deg, rgba(251, 248, 241, 0.75), var(--paper));
  }

  .split-layout,
  .gap-grid,
  .urgency,
  .problem,
  .proof,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .plain-copy {
    position: static;
  }

  .urgency-intro {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 58px;
    margin-top: 8px;
    padding: 9px 10px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 54px;
  }

  .hero-media img {
    object-position: 66% center;
    opacity: 0.62;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(251, 248, 241, 0.97) 0%,
        rgba(251, 248, 241, 0.92) 34%,
        rgba(251, 248, 241, 0.98) 100%
      ),
      linear-gradient(
        90deg,
        rgba(251, 248, 241, 1) 0%,
        rgba(251, 248, 241, 0.94) 72%,
        rgba(251, 248, 241, 0.84) 100%
      );
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 12vw, 3.55rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  h3 {
    font-size: 1.13rem;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .hero-subheadline,
  .hero-support {
    max-width: 100%;
  }

  .hero-subheadline {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .hero-support {
    margin-bottom: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
    text-align: center;
    font-size: 0.93rem;
  }

  .trust-strip {
    max-width: 100%;
    margin-top: 22px;
    gap: 8px;
  }

  .trust-strip span {
    width: 100%;
    min-height: 34px;
    font-size: 0.86rem;
  }

  .intro-band {
    padding: 24px 14px;
  }

  .intro-band p {
    text-align: left;
    font-size: 1.05rem;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading.centered p {
    margin-left: 0;
  }

  .split-layout {
    gap: 16px;
  }

  .plain-copy {
    padding: 22px;
  }

  .plain-copy p {
    font-size: 1.05rem;
  }

  .example-grid article,
  .gap-grid article,
  .use-case-grid article,
  .step-row article,
  .quote-grid figure,
  .price-card {
    min-height: auto;
    padding: 20px;
  }

  .card-icon,
  .gap-label {
    margin-bottom: 18px;
  }

  .problem {
    padding: 58px 14px;
    gap: 28px;
  }

  .gap {
    padding: 58px 14px;
  }

  .urgency {
    gap: 24px;
  }

  .quote-grid blockquote {
    font-size: 1.25rem;
  }

  .pain-list div {
    grid-template-columns: 32px 1fr;
    min-height: 58px;
    padding: 12px 14px;
    font-size: 0.96rem;
  }

  .example-grid,
  .gap-grid,
  .use-case-grid,
  .step-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .use-case-top {
    grid-template-columns: 42px 1fr;
    margin-bottom: 18px;
  }

  .use-case-icon {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .final-cta {
    width: calc(100% - 28px);
    padding: 22px;
    gap: 24px;
  }

  .task-form {
    padding: 14px;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 28px);
  }
}

@media (max-width: 430px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
  }

  .brand {
    justify-self: start;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-media img {
    object-position: 72% center;
    opacity: 0.42;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.05rem);
  }

  .hero-subheadline,
  .hero-support {
    font-size: 0.96rem;
  }

  .button {
    font-size: 0.9rem;
  }

  .trust-strip span {
    padding-inline: 11px;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 10.5vw, 2.55rem);
  }
}

/* ==========================================================================
   PREMIUM VISUAL LAYER — Webflow-grade upgrades
   ========================================================================== */

/* Refined motion + cursor */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ===== Mesh gradient + dot pattern overlay (hero) ===== */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 15% 30%, rgba(17, 97, 91, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(215, 169, 72, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 60% 90%, rgba(223, 109, 85, 0.16), transparent 60%),
    var(--paper);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(20, 38, 37, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { z-index: 2; }
.hero-media,
.hero-overlay { z-index: 1; }

/* Floating decorative shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: float-y 12s ease-in-out infinite;
}

.float-shape.fs-1 {
  width: 380px; height: 380px;
  top: 8%; right: -80px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  animation-delay: 0s;
}

.float-shape.fs-2 {
  width: 280px; height: 280px;
  bottom: 12%; left: -60px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  animation-delay: -4s;
  animation-duration: 14s;
}

.float-shape.fs-3 {
  width: 220px; height: 220px;
  top: 38%; left: 42%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  animation-delay: -8s;
  animation-duration: 16s;
  opacity: 0.35;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%      { transform: translateY(-26px) translateX(14px); }
  66%      { transform: translateY(18px) translateX(-12px); }
}

/* ===== Hero badge / pill ===== */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(17, 97, 91, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(20, 38, 37, 0.08);
}

.hero-pill::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1ec77c;
  box-shadow: 0 0 0 4px rgba(30, 199, 124, 0.18);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(30, 199, 124, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(30, 199, 124, 0.06); }
}

.hero-pill .pill-tag {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--teal-deep);
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

/* ===== Marquee — integrations strip ===== */
.marquee {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.marquee-label {
  text-align: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.78;
  transition: opacity 200ms ease, color 200ms ease;
}

.marquee-item:hover { opacity: 1; color: var(--teal-deep); }

.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

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

/* ===== Bento grid ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 16px;
}

.bento article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.bento article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(20, 38, 37, 0.12);
  border-color: rgba(17, 97, 91, 0.32);
}

.bento .b-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: var(--aqua);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: max-content;
}

.bento h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.bento p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.bento .b-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--paper-warm);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.bento .span-2 { grid-column: span 2; }
.bento .span-tall { grid-row: span 2; }

.bento .b-dark {
  color: var(--paper);
  border-color: transparent;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(223, 109, 85, 0.32), transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(215, 169, 72, 0.22), transparent 60%),
    linear-gradient(135deg, var(--teal-deep), #051c1b);
}

.bento .b-dark p { color: var(--aqua); }
.bento .b-dark .b-num { color: rgba(255,255,255,0.08); }
.bento .b-dark .b-tag { background: rgba(255,255,255,0.14); color: var(--paper); }

.bento .b-accent {
  color: var(--ink);
  border-color: transparent;
  background:
    linear-gradient(135deg, var(--gold), #f3c66c);
}
.bento .b-accent .b-tag { background: rgba(20,38,37,0.16); color: var(--ink); }
.bento .b-accent .b-num { color: rgba(20,38,37,0.1); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .float-shape { animation: none; }
}

/* ===== Modern nav underline ===== */
.nav-links a {
  position: relative;
  padding: 4px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ===== Premium button shine ===== */
.button-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg);
  transition: left 700ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.button-primary:hover::before { left: 140%; }

/* ===== Animated stat counters ===== */
.stats-row {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(17, 97, 91, 0.06), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(223, 109, 85, 0.08), transparent 60%),
    var(--white);
  border-radius: 16px;
}

.stat {
  position: relative;
  padding: 16px 8px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%; bottom: 20%; right: 0;
  width: 1px;
  background: var(--line);
}

@media (max-width: 1040px) {
  .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 760px) {
  .stat::after { display: none !important; }
}

.stat-num {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Card glow border on hover (for example-grid + use-cases) ===== */
.example-grid article,
.use-case-grid article,
.gap-grid article,
.blog-card,
.price-card {
  position: relative;
  border-radius: 14px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.example-grid article::before,
.use-case-grid article::before,
.gap-grid article::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(17, 97, 91, 0.35), rgba(223, 109, 85, 0.35));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.example-grid article:hover::before,
.use-case-grid article:hover::before,
.gap-grid article:hover::before,
.blog-card:hover::before { opacity: 1; }

/* ===== Bento responsive ===== */
@media (max-width: 1040px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .bento .span-2, .bento .span-tall { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 160px; }
  .bento .span-2 { grid-column: auto; }
  .bento .b-num { font-size: 2.6rem; top: 18px; right: 20px; }
}

/* ==========================================================================
   FOUNDER BIO SECTION
   ========================================================================== */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.founder-avatar {
  position: sticky;
  top: 112px;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.founder-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(223, 109, 85, 0.32), transparent 50%);
}

.founder-avatar span {
  position: relative;
  z-index: 1;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--paper);
  letter-spacing: -0.04em;
}

.founder-bio p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.founder-name {
  margin-bottom: 4px !important;
  color: var(--ink) !important;
  font-size: 1.6rem !important;
  font-weight: 900;
  line-height: 1.1;
}

.founder-title {
  margin-bottom: 24px !important;
  color: var(--coral) !important;
  font-size: 0.92rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-credentials {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.founder-credentials li {
  padding: 12px 16px;
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 0.98rem;
}

.founder-credentials strong {
  color: var(--teal-deep);
  font-weight: 900;
}

.founder-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}

.founder-link {
  color: var(--teal) !important;
  font-weight: 800;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 180ms ease;
}

.founder-link:hover { border-color: var(--coral); }

@media (max-width: 1040px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .founder-avatar {
    position: static;
    max-width: 220px;
  }
}
