:root {
  --ink: #17211e;
  --muted: #65716b;
  --soft: #f7f4ed;
  --canvas: #fffdf8;
  --surface: #ffffff;
  --mineral: #edf2ee;
  --line: #e1e5de;
  --charcoal: #151f1b;
  --orange: #f47b36;
  --orange-dark: #d75f22;
  --green: #2f9e69;
  --green-soft: #dff3e5;
  --amber-soft: #fff4e8;
  --radius-lg: 28px;
  --shadow-soft: 0 24px 76px rgba(37, 45, 39, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 123, 54, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff9ef 0%, var(--canvas) 34%, #ffffff 100%);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 158, 105, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(226, 229, 223, 0.9);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 10px;
  font-family: "Newsreader", serif;
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a.active,
.nav-links a:hover,
.site-footer a:hover {
  color: var(--orange-dark);
}

.header-action,
.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-action {
  min-height: 40px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
}

.button {
  min-height: 48px;
  padding: 14px 20px;
}

.button:hover,
.mini-button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(244, 123, 54, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.mini-button {
  min-height: 38px;
  padding: 9px 12px;
  color: #fff;
  background: var(--ink);
  border: 0;
  font: inherit;
  font-size: 12px;
}

.mini-button.approved {
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.page-band,
.section,
.section-shell,
.security-section,
.final-cta,
.subpage-hero,
.site-footer,
.logo-band {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 42px;
  min-height: calc(100vh - 92px);
  padding: 90px 0 52px;
  align-items: center;
}

.subpage-hero {
  padding: 92px 0 46px;
}

.subpage-hero h1,
.hero-section h1 {
  max-width: 860px;
}

.subpage-hero p:not(.eyebrow),
.hero-lede {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #97d8b2;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.4vw, 82px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

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

.hero-lede,
.subpage-hero p:not(.eyebrow),
.section-heading p,
.split-heading p {
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 24px;
}

.trust-row,
.logo-band,
.panel-heading,
.split-heading,
.site-footer,
.partner-cta,
.two-cta,
.screen-header {
  display: flex;
  align-items: center;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.logo-band span,
.logo-band strong {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #405049;
  font-size: 13px;
  font-weight: 800;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  position: absolute;
  inset: 34px -12px -20px 46px;
  content: "";
  background:
    linear-gradient(135deg, rgba(216, 240, 223, 0.9), rgba(246, 239, 227, 0.16)),
    repeating-linear-gradient(90deg, rgba(23, 33, 30, 0.06) 0 1px, transparent 1px 34px);
  border-radius: 36px;
  transform: rotate(2.2deg);
}

.product-shell {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(47, 158, 105, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
  border: 1px solid rgba(226, 229, 223, 0.95);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.revenue-console.is-changing .console-main,
.revenue-console.is-changing .console-inbox {
  animation: consoleRefresh 520ms ease;
}

.product-topbar {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.window-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  background: #73807a;
  border-radius: 50%;
}

.window-dot:first-child {
  background: var(--orange);
}

.window-dot:nth-child(2) {
  background: #e8c65c;
}

.window-dot:nth-child(3) {
  background: var(--green);
}

.product-status {
  padding: 7px 10px;
  color: #596760;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.console-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.console-inbox,
.console-main {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.console-inbox {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.rail-title,
.label {
  color: #74817b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.message-card.is-active {
  background: var(--green-soft);
  border-color: #bfe5ca;
  transform: translateY(-1px);
}

.message-card span,
.quote-preview small,
.metric-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.console-main {
  padding: 22px;
}

.panel-heading {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.panel-heading h2 {
  margin: 4px 0 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.health-badge {
  flex: 0 0 auto;
  padding: 9px 11px;
  color: #17643f;
  background: var(--green-soft);
  border: 1px solid #bfe5ca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.brief-grid,
.owner-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.brief-grid article,
.metric-card {
  min-width: 0;
  padding: 16px;
  background: #f8faf6;
  border: 1px solid #e7ebe5;
  border-radius: 18px;
}

.brief-grid span,
.metric-card span {
  display: block;
  color: #62706b;
  font-size: 12px;
  font-weight: 800;
}

.brief-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.28;
}

.quote-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.quote-preview span,
.quote-preview strong,
.quote-preview small {
  display: block;
}

.quote-preview strong {
  margin: 5px 0;
}

.timeline {
  display: grid;
  gap: 9px;
}

.timeline span {
  position: relative;
  padding: 11px 12px 11px 34px;
  color: #4a5852;
  background: #fbfcfa;
  border: 1px solid #e5e9e3;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.timeline span::before {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 10px;
  height: 10px;
  content: "";
  background: #bcc7c0;
  border-radius: 50%;
}

.timeline span.done::before {
  background: var(--green);
}

.timeline span.current {
  color: #17211e;
  background: #fff4e8;
  border-color: #ffd6b6;
}

.timeline span.current::before {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 54, 0.14);
}

.logo-band {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(37, 45, 39, 0.06);
}

.logo-band span {
  color: #8a948f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.section-shell,
.security-section,
.final-cta {
  margin-top: 28px;
  margin-bottom: 76px;
  padding: 54px;
  border-radius: 34px;
}

.section-shell {
  background:
    linear-gradient(130deg, rgba(244, 123, 54, 0.1), transparent 42%),
    var(--soft);
  border: 1px solid #eadfcf;
}

.frontdoor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 32px;
  align-items: center;
}

.frontdoor-copy p {
  max-width: 680px;
}

.frontdoor-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(37, 45, 39, 0.08);
}

.frontdoor-row {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.frontdoor-row small {
  color: var(--muted);
  font-weight: 700;
}

.buyer-proof {
  background:
    linear-gradient(130deg, rgba(223, 243, 229, 0.52), transparent 48%),
    #fff;
}

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

.buyer-grid article {
  min-height: 230px;
  padding: 22px;
  background: #f8faf6;
  border: 1px solid #e7ebe5;
  border-radius: 22px;
}

.buyer-grid span,
.deployment-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

.buyer-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.split-heading {
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.split-heading > p {
  max-width: 430px;
}

.pain-grid,
.outcome-grid,
.employee-grid,
.pricing-grid,
.resource-grid,
.partner-grid,
.operations-grid,
.pricing-fit-grid,
.faq-grid,
.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-card,
.outcome-grid article,
.employee-card,
.price-card,
.resource-grid article,
.partner-grid article,
.workflow-map article,
.operations-grid article,
.pricing-fit-grid article,
.faq-grid article,
.process-rail article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 54px rgba(37, 45, 39, 0.07);
}

.pain-card,
.outcome-grid article {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
}

.process-rail,
.pricing-fit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-rail article,
.pricing-fit-grid article,
.operations-grid article,
.faq-grid article {
  min-height: 230px;
}

.process-rail span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 12px;
  font-weight: 900;
}

.process-rail strong,
.pricing-fit-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.pricing-fit-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operations-grid h3,
.faq-grid h3 {
  margin-top: 16px;
}

.faq-section {
  padding-top: 20px;
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.workflow-tab {
  min-height: 42px;
  padding: 10px 15px;
  color: #394842;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.workflow-tab.active {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.platform-tab {
  min-height: 56px;
  padding: 12px 14px;
  color: #394842;
  text-align: left;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  font: inherit;
  font-weight: 900;
}

.platform-tab.active {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.platform-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.platform-stage > div:first-child,
.platform-screen {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.platform-stage h3 {
  max-width: 560px;
  margin-top: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
}

.stage-list.compact {
  margin-top: 20px;
}

.platform-screen {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    linear-gradient(150deg, rgba(47, 158, 105, 0.1), transparent 38%),
    #fff;
}

.screen-header {
  justify-content: space-between;
  color: #4f5e57;
  font-size: 13px;
  font-weight: 900;
}

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

.screen-grid article {
  padding: 18px;
  min-height: 124px;
  background: #f8faf6;
  border: 1px solid #e7ebe5;
  border-radius: 18px;
}

.screen-grid span,
.screen-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.screen-grid strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 34px;
}

.initiative-section {
  padding-top: 72px;
}

.initiative-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
}

.initiative-tabs {
  display: grid;
  gap: 10px;
}

.initiative-tab {
  min-height: 72px;
  padding: 18px;
  color: #394842;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(37, 45, 39, 0.05);
}

.initiative-tab.active {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 158, 105, 0.22), transparent 42%),
    var(--charcoal);
  border-color: var(--charcoal);
}

.initiative-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(223, 243, 229, 0.5), transparent 52%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 54px rgba(37, 45, 39, 0.07);
}

.initiative-panel h3 {
  max-width: 700px;
  margin-top: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.initiative-brief {
  display: grid;
  align-content: center;
  min-height: 320px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 123, 54, 0.24), transparent 32%),
    linear-gradient(180deg, #26352f 0%, #131b18 100%);
  border-radius: 24px;
}

.initiative-brief > span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 11px;
  color: #1a3326;
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.initiative-brief strong {
  display: block;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
}

.initiative-brief small {
  display: block;
  margin-top: 10px;
  color: #cad7d0;
  font-size: 14px;
  font-weight: 800;
}

.approval-strip {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.approval-strip span {
  padding: 11px 12px;
  color: #dfe9e4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}

.workflow-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 110px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.stage-card {
  padding: 24px;
  min-height: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.stage-flow {
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 10px;
}

.stage-flow span {
  width: 70px;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 999px;
  animation: pulseFlow 1.4s ease-in-out infinite;
}

.stage-flow span:nth-child(2) {
  animation-delay: 160ms;
}

.stage-flow span:nth-child(3) {
  animation-delay: 320ms;
}

.stage-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.stage-list li {
  padding: 13px 14px;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #3e4944;
  font-weight: 700;
}

.employee-card {
  display: grid;
  gap: 14px;
}

.employee-card .icon-tile {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--green));
  border-radius: 14px;
  font-weight: 900;
}

.employee-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.employee-card dt {
  color: #4d5a54;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.employee-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.employee-directory {
  display: grid;
  gap: 18px;
}

.employee-directory .employee-card {
  grid-template-columns: 64px minmax(180px, 0.6fr) minmax(0, 1.4fr);
  align-items: start;
}

.metric-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.metric-card.warning {
  background: var(--amber-soft);
}

.action-queue {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.status {
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.new,
.status.draft {
  color: #244d39;
  background: var(--green-soft);
}

.status.approval,
.status.due {
  color: #7b421e;
  background: #ffe8d7;
}

.status.waiting {
  color: #47505b;
  background: #e9eef3;
}

.status.risk {
  color: #8a2f20;
  background: #ffe2dd;
}

.status.done {
  color: #17643f;
  background: #d7f4df;
}

.security-section {
  color: #f7fbf7;
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 158, 105, 0.2), transparent 34%),
    linear-gradient(180deg, #22312b 0%, #111715 100%);
}

.security-section h2,
.security-section p {
  color: #fff;
}

.security-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.security-grid span {
  padding: 16px;
  color: #dce8e2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-weight: 800;
}

.partner-cta,
.two-cta {
  justify-content: space-between;
  gap: 24px;
}

.partner-cta p,
.two-cta p {
  max-width: 660px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.pricing-grid.full {
  grid-template-columns: repeat(4, 1fr);
}

.price-card.featured {
  color: #fff;
  background:
    linear-gradient(150deg, rgba(47, 158, 105, 0.3), transparent 48%),
    var(--charcoal);
  border-color: #2d3a36;
}

.price-card.featured p,
.price-card.featured li {
  color: #c8d4ce;
}

.popular {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  color: #122019;
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 34px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.4;
}

.price-card .button {
  margin-top: auto;
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.workflow-map article span,
.resource-grid article span,
.partner-grid article span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-cloud span {
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.resource-grid article,
.partner-grid article {
  min-height: 230px;
}

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

.proof-card {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 246, 0.95)),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 54px rgba(37, 45, 39, 0.07);
}

.proof-card strong {
  display: block;
  margin-bottom: 24px;
  font-size: 22px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.proof-metrics div {
  padding: 22px;
  background: var(--charcoal);
  border-radius: 22px;
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  color: #fff;
  font-size: 38px;
}

.proof-metrics span {
  color: #c9d5ce;
  font-weight: 800;
}

.deployment-section {
  background:
    linear-gradient(135deg, rgba(244, 123, 54, 0.12), transparent 42%),
    #fffaf1;
}

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

.deployment-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid #eadfcf;
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(37, 45, 39, 0.06);
}

.deployment-grid article:not(:last-child)::after {
  position: absolute;
  right: -14px;
  top: 44px;
  width: 14px;
  height: 2px;
  content: "";
  background: #d9c9b5;
}

.deployment-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #eadfcf;
  border-radius: 22px;
}

.deployment-note strong {
  flex: 0 0 auto;
}

.deployment-note span {
  color: var(--muted);
  line-height: 1.45;
}

.agent-library {
  background:
    linear-gradient(145deg, rgba(47, 158, 105, 0.11), transparent 45%),
    #f5f7f1;
}

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

.library-grid article {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(37, 45, 39, 0.06);
}

.library-grid span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: #244d39;
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.library-grid h3 {
  font-size: 19px;
}

.library-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.insights-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.insight-main-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 16%, rgba(244, 123, 54, 0.28), transparent 32%),
    linear-gradient(180deg, #26352f 0%, #121916 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 54px rgba(37, 45, 39, 0.1);
}

.insight-main-card span,
.insight-main-card a {
  width: fit-content;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-main-card span {
  margin-bottom: 26px;
  color: #97d8b2;
}

.insight-main-card h3 {
  margin-bottom: 16px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.98;
}

.insight-main-card p {
  color: #dbe8e1;
}

.insight-main-card a {
  margin-top: auto;
  padding: 12px 14px;
  color: #132018;
  background: var(--green-soft);
  border-radius: 999px;
}

.reason-grid article,
.resource-preview-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 54px rgba(37, 45, 39, 0.07);
}

.reason-grid article {
  min-height: 280px;
}

.reason-grid span,
.resource-preview-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-preview-grid article {
  min-height: 226px;
  background:
    linear-gradient(145deg, rgba(223, 243, 229, 0.42), transparent 54%),
    #fff;
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 32px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 158, 105, 0.2), transparent 32%),
    linear-gradient(180deg, #26352f 0%, #121916 100%);
  border-color: #25322d;
}

.insight-feature h2,
.insight-feature p {
  color: #fff;
}

.insight-feature p {
  max-width: 760px;
}

.audit-card {
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.audit-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.audit-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audit-card li {
  padding: 12px 13px;
  color: #405049;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(140deg, rgba(244, 123, 54, 0.14), transparent 42%),
    #f9f4ea;
  border: 1px solid #eadfcf;
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}

.site-footer {
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding: 30px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 6px;
  max-width: 290px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav,
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 34px;
  font-weight: 800;
}

.footer-columns div {
  display: grid;
  gap: 10px;
}

.footer-columns span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-columns a {
  color: var(--muted);
}

@keyframes pulseFlow {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-8px);
  }
  50% {
    opacity: 1;
    transform: translateX(8px);
  }
}

@keyframes consoleRefresh {
  0% {
    opacity: 0.72;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-product {
    width: min(820px, 100%);
    margin: 0 auto;
  }

  .pricing-grid.full,
  .workflow-map,
  .process-rail,
  .pricing-fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .insights-layout {
    grid-template-columns: 1fr;
  }

  .deployment-grid article::after {
    display: none;
  }

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

@media (max-width: 980px) {
  .site-header {
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
  }

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

  .nav-links a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #f7faf6;
  }

  .console-layout,
  .workflow-stage,
  .employee-directory .employee-card,
  .frontdoor-section,
  .initiative-layout,
  .initiative-panel,
  .insight-feature,
  .insights-layout,
  .platform-stage {
    grid-template-columns: 1fr;
  }

  .brief-grid,
  .owner-dashboard,
  .pain-grid,
  .outcome-grid,
  .employee-grid,
  .pricing-grid,
  .resource-grid,
  .partner-grid,
  .operations-grid,
  .pricing-fit-grid,
  .faq-grid,
  .process-rail,
  .security-grid,
  .buyer-grid,
  .deployment-grid,
  .proof-grid,
  .proof-metrics,
  .library-grid,
  .reason-grid,
  .resource-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .partner-cta,
  .two-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-flow {
    grid-template-columns: repeat(3, 1fr);
    min-height: 40px;
  }

  .stage-flow span {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .site-header,
  .page-band,
  .section,
  .section-shell,
  .security-section,
  .final-cta,
  .subpage-hero,
  .site-footer,
  .logo-band {
    width: calc(100% - 22px);
  }

  .site-header {
    margin-top: 10px;
    padding: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    padding: 10px 13px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-section {
    padding: 48px 0 30px;
  }

  .subpage-hero {
    padding: 58px 0 26px;
  }

  .hero-lede,
  .subpage-hero p:not(.eyebrow),
  .section-heading p,
  .split-heading p {
    font-size: 17px;
  }

  .product-shell {
    min-height: auto;
    border-radius: 24px;
  }

  .hero-product::before {
    inset: 18px 0 -10px;
    transform: none;
  }

  .console-layout {
    padding: 12px;
  }

  .panel-heading,
  .quote-preview,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .brief-grid,
  .owner-dashboard,
  .pain-grid,
  .outcome-grid,
  .employee-grid,
  .pricing-grid,
  .pricing-grid.full,
  .resource-grid,
  .partner-grid,
  .operations-grid,
  .pricing-fit-grid,
  .faq-grid,
  .process-rail,
  .security-grid,
  .workflow-map,
  .buyer-grid,
  .deployment-grid,
  .proof-grid,
  .proof-metrics,
  .screen-grid,
  .initiative-layout,
  .initiative-panel,
  .library-grid,
  .reason-grid,
  .resource-preview-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .initiative-tabs {
    grid-template-columns: 1fr;
  }

  .initiative-tab {
    min-height: 58px;
  }

  .initiative-panel,
  .library-grid article {
    padding: 20px;
  }

  .deployment-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-card strong {
    font-size: 30px;
  }

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

  .section {
    padding: 58px 0;
  }

  .section-shell,
  .security-section,
  .final-cta {
    padding: 24px;
    border-radius: 26px;
  }

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

  .workflow-tab,
  .platform-tab {
    width: 100%;
  }

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .site-footer nav.footer-columns {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
