@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

:root {
  --ink: #17201f;
  --ink-soft: #40504d;
  --muted: #6c7774;
  --line: #dfe6e1;
  --surface: #ffffff;
  --surface-soft: #f5f7f4;
  --surface-warm: #fbfaf6;
  --green: #0f4d46;
  --green-dark: #0b302d;
  --teal: #1f8a7a;
  --amber: #d99032;
  --coral: #cd5b4a;
  --blue: #315f96;
  --shadow: 0 24px 70px rgba(23, 32, 31, 0.12);
  --radius: 8px;
  --max: 1160px;
  --header-bg: rgba(251, 250, 246, 0.96);
  --card-bg: #ffffff;
  --hero-panel: #f6f3ea;
  --hero-ink: #12201e;
  --hero-copy: #43514d;
  --hero-eyebrow: #0f7c70;
  --hero-chip: rgba(15, 77, 70, 0.08);
  --hero-chip-border: rgba(15, 77, 70, 0.18);
  --hero-chip-text: #213c38;
  --hero-secondary-bg: #ffffff;
  --hero-secondary-border: rgba(15, 77, 70, 0.22);
  --hero-secondary-text: #0b302d;
  --hero-glow: rgba(31, 138, 122, 0.14);
  --hero-console-border: rgba(15, 77, 70, 0.12);
  --hero-console-shadow: 0 28px 70px rgba(23, 32, 31, 0.16);
  color-scheme: light;
}

:root[data-theme="dark"] {
  --ink: #eef5f1;
  --ink-soft: #c5d1cc;
  --muted: #9baaa5;
  --line: #293b38;
  --surface: #121b1a;
  --surface-soft: #192624;
  --surface-warm: #0d1514;
  --green: #6fd0bf;
  --green-dark: #081f1d;
  --teal: #67d1c0;
  --amber: #e0a251;
  --coral: #df705f;
  --blue: #77a8df;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --header-bg: rgba(13, 21, 20, 0.94);
  --card-bg: #121b1a;
  --hero-panel: #071d1b;
  --hero-ink: #ffffff;
  --hero-copy: rgba(255, 255, 255, 0.82);
  --hero-eyebrow: #95e0d4;
  --hero-chip: rgba(255, 255, 255, 0.12);
  --hero-chip-border: rgba(255, 255, 255, 0.2);
  --hero-chip-text: rgba(255, 255, 255, 0.88);
  --hero-secondary-bg: rgba(255, 255, 255, 0.12);
  --hero-secondary-border: rgba(255, 255, 255, 0.32);
  --hero-secondary-text: #ffffff;
  --hero-glow: rgba(31, 138, 122, 0.18);
  --hero-console-border: rgba(255, 255, 255, 0.16);
  --hero-console-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-warm);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 0 clamp(16px, 3vw, 42px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(15, 77, 70, 0.12);
  box-shadow: 0 12px 30px rgba(23, 32, 31, 0.045);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 5px 12px 5px 6px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(238, 248, 244, 0.92), rgba(250, 248, 240, 0.82));
  border: 1px solid rgba(15, 77, 70, 0.16);
  border-radius: 12px;
  box-shadow: none;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.brand-ruf {
  color: var(--green-dark);
}

.brand-hub {
  color: var(--teal);
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: cover;
  background: #0d211f;
  border: 1px solid rgba(15, 77, 70, 0.22);
  border-radius: 10px;
  box-shadow: none;
}

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

.nav-links a {
  position: relative;
  padding: 10px 11px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(31, 138, 122, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 10px 11px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.current {
  color: var(--ink);
  background: rgba(31, 138, 122, 0.08);
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown.open .nav-chevron {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 260px;
  padding: 8px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 2px;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-links .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0f675d);
  margin-left: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(15, 77, 70, 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.theme-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 30px);
  align-items: center;
  gap: 2px;
  height: 38px;
  margin-left: 6px;
  padding: 3px;
  background: rgba(15, 77, 70, 0.055);
  border: 1px solid rgba(15, 77, 70, 0.15);
  border-radius: 999px;
}

.theme-choice {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.theme-choice:hover {
  color: var(--ink);
}

.theme-choice.active {
  color: var(--green-dark);
  background: var(--surface);
  box-shadow: 0 8px 16px rgba(23, 32, 31, 0.12);
}

.theme-choice svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-choice svg circle {
  fill: none;
}

:root[data-theme="dark"] .theme-switch {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

:root[data-theme="dark"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .brand {
  background:
    linear-gradient(135deg, rgba(191, 238, 228, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(191, 238, 228, 0.18);
  box-shadow: none;
}

:root[data-theme="dark"] .brand-ruf {
  color: #f3fbf8;
}

:root[data-theme="dark"] .brand-hub {
  color: #8adfd1;
}

:root[data-theme="dark"] .brand-logo {
  background: #061817;
  border-color: rgba(191, 238, 228, 0.22);
}

:root[data-theme="dark"] .nav-links a:hover,
:root[data-theme="dark"] .nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .nav-dropdown.open .nav-dropdown-toggle,
:root[data-theme="dark"] .nav-dropdown-toggle.current {
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .nav-dropdown-menu {
  background: #0e1a18;
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .theme-choice.active {
  color: #061817;
  background: #dff4ec;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--card-bg);
  border-radius: 8px;
}

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

.hero {
  position: relative;
  min-height: clamp(650px, 78svh, 760px);
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 28%, rgba(217, 144, 50, 0.2), transparent 28%),
    radial-gradient(circle at 92% 88%, var(--hero-glow), transparent 30%),
    var(--hero-panel);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(660px, 1.12fr);
  gap: 48px;
  align-items: center;
  width: min(100% - 48px, 1420px);
  margin: 0 auto;
  padding: 72px 0 58px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--hero-ink);
  font-size: clamp(2.45rem, 3.7vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--hero-copy);
  font-size: 1.16rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 12% -8% auto auto;
  width: 70%;
  height: 70%;
  content: "";
  background: rgba(31, 138, 122, 0.12);
  border-radius: 999px;
  filter: blur(42px);
}

.hero-media img {
  position: relative;
  width: min(100%, 620px);
  margin-left: auto;
  border: 1px solid var(--hero-console-border);
  border-radius: 8px;
  box-shadow: var(--hero-console-shadow);
}

.visibility-console {
  position: relative;
  width: min(100%, 760px);
  margin-left: auto;
  overflow: hidden;
  color: #12201e;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hero-console-border);
  border-radius: 8px;
  box-shadow: var(--hero-console-shadow);
  backdrop-filter: blur(10px);
}

.console-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce6e1;
}

.console-title span {
  display: block;
  color: #0d7d71;
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-title strong {
  display: block;
  margin-top: 5px;
  color: #12201e;
  font-size: 1.18rem;
  line-height: 1.1;
}

.console-title em {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: #17322e;
  background: #dff4ef;
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 820;
}

.console-body {
  padding: 20px;
}

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

.console-metrics article {
  min-height: 96px;
  padding: 14px;
  background: #f6f9f6;
  border: 1px solid #dce6e1;
  border-radius: 8px;
}

.console-metrics span,
.console-footer span {
  display: block;
  color: #61716d;
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.console-metrics strong {
  display: block;
  margin-top: 8px;
  color: #0d7d71;
  font-size: 2.1rem;
  line-height: 1;
}

.console-metrics article:nth-child(2) strong {
  color: #cd5b4a;
}

.console-metrics article:nth-child(3) strong {
  color: #315f96;
}

.console-metrics small {
  display: block;
  margin-top: 8px;
  color: #50605c;
}

.console-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 14px;
  margin-top: 14px;
}

.console-chart,
.agent-panel,
.console-footer {
  background: #f8faf8;
  border: 1px solid #dce6e1;
  border-radius: 8px;
}

.console-chart {
  padding: 18px 18px 12px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.chart-head span {
  color: #142320;
  font-weight: 840;
}

.chart-head strong {
  color: #0d7d71;
}

.console-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart-grid {
  fill: none;
  stroke: #e2ebe7;
  stroke-width: 1;
}

.chart-area {
  fill: rgba(31, 138, 122, 0.12);
}

.chart-line {
  fill: none;
  stroke: #188475;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.chart-dots {
  fill: #188475;
}

.agent-panel {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.agent-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(220, 230, 225, 0.72);
  box-shadow: 0 8px 18px rgba(23, 32, 31, 0.04);
}

.agent-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  overflow: hidden;
  background: transparent;
  border: 0;
  color: #17201f;
}

.agent-mark img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.agent-row[data-agent="gemini"] .agent-mark img {
  width: 21px;
  height: 21px;
}

.agent-row[data-agent="perplexity"] .agent-mark img {
  width: 22px;
  height: 22px;
}

.agent-row strong,
.agent-row small {
  display: block;
}

.agent-row strong {
  font-size: 0.84rem;
}

.agent-row small {
  margin-top: 2px;
  color: #61716d;
  font-size: 0.7rem;
  line-height: 1.25;
}

.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 16px;
  background:
    linear-gradient(90deg, rgba(31, 138, 122, 0.1), transparent 62%),
    #f8faf8;
}

.console-footer strong {
  display: block;
  margin-top: 4px;
  color: #12201e;
  line-height: 1.25;
}

:root[data-theme="dark"] .visibility-console {
  color: #eef8f4;
  background:
    linear-gradient(145deg, rgba(17, 32, 30, 0.94), rgba(10, 22, 21, 0.96)),
    #101918;
  border-color: rgba(214, 226, 220, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

:root[data-theme="dark"] .console-title {
  border-bottom-color: rgba(214, 226, 220, 0.13);
}

:root[data-theme="dark"] .console-title span {
  color: #89d8ca;
}

:root[data-theme="dark"] .console-title strong,
:root[data-theme="dark"] .chart-head span,
:root[data-theme="dark"] .console-footer strong {
  color: #f4fbf8;
}

:root[data-theme="dark"] .console-title em {
  color: #06211e;
  background: #bfeee4;
}

:root[data-theme="dark"] .console-metrics article,
:root[data-theme="dark"] .console-chart,
:root[data-theme="dark"] .agent-panel,
:root[data-theme="dark"] .console-footer {
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(214, 226, 220, 0.13);
}

:root[data-theme="dark"] .console-metrics span,
:root[data-theme="dark"] .console-footer span,
:root[data-theme="dark"] .console-metrics small,
:root[data-theme="dark"] .agent-row small {
  color: rgba(239, 248, 244, 0.68);
}

:root[data-theme="dark"] .console-metrics article:first-child strong {
  color: #bfeee4;
}

:root[data-theme="dark"] .console-metrics article:first-child {
  background: rgba(255, 255, 255, 0.07);
}

:root[data-theme="dark"] .console-metrics article:nth-child(3) strong {
  color: #8bbdf1;
}

:root[data-theme="dark"] .chart-grid {
  stroke: rgba(180, 225, 214, 0.12);
}

:root[data-theme="dark"] .chart-area {
  fill: rgba(103, 209, 192, 0.16);
}

:root[data-theme="dark"] .chart-line {
  stroke: #67d1c0;
}

:root[data-theme="dark"] .chart-dots {
  fill: #67d1c0;
}

:root[data-theme="dark"] .agent-row {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(214, 226, 220, 0.12);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

:root[data-theme="dark"] .agent-mark {
  color: #17201f;
}

:root[data-theme="dark"] .agent-row[data-agent="chatgpt"] .agent-mark img {
  filter: invert(1);
}

:root[data-theme="dark"] .console-footer {
  background:
    linear-gradient(90deg, rgba(103, 209, 192, 0.14), transparent 64%),
    rgba(255, 255, 255, 0.055);
}

.hero-actions,
.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f7c70, #1f8a7a);
  box-shadow: 0 16px 34px rgba(15, 124, 112, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(15, 124, 112, 0.3);
}

.button-secondary {
  color: var(--hero-secondary-text);
  background: rgba(255, 255, 255, 0.34);
  border-color: var(--hero-secondary-border);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(15, 77, 70, 0.38);
}

.button-dark {
  color: #fff;
  background: var(--green-dark);
}

.button-outline {
  color: var(--green);
  border-color: rgba(15, 77, 70, 0.26);
  background: var(--card-bg);
}

.button-light {
  color: var(--green-dark);
  background: #fff;
}

.button-mint {
  color: var(--green-dark);
  background: #bfeee4;
  box-shadow: 0 12px 26px rgba(103, 209, 192, 0.16);
}

.eyebrow,
.small-label,
.plan-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--hero-eyebrow);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 720px;
  margin-top: 38px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--hero-chip-text);
  background: var(--hero-chip);
  border: 1px solid var(--hero-chip-border);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 690;
}

.proof-strip span::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--hero-eyebrow);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(31, 138, 122, 0.1);
}

:root[data-theme="dark"] .button-primary {
  color: #06211e;
  background: linear-gradient(135deg, #bfeee4, #67d1c0);
  box-shadow: 0 18px 38px rgba(103, 209, 192, 0.18);
}

:root[data-theme="dark"] .button-primary:hover {
  box-shadow: 0 20px 42px rgba(103, 209, 192, 0.24);
}

:root[data-theme="dark"] .package-preview .button-outline {
  color: #8de4d7;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(141, 228, 215, 0.18);
}

:root[data-theme="dark"] .package-preview .button-outline:hover {
  background: rgba(141, 228, 215, 0.09);
  border-color: rgba(141, 228, 215, 0.28);
}

:root[data-theme="dark"] .button-secondary {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.28);
}

:root[data-theme="dark"] .button-secondary:hover {
  border-color: rgba(191, 238, 228, 0.48);
}

:root[data-theme="dark"] .proof-strip span::before {
  background: #bfeee4;
  box-shadow: 0 0 0 4px rgba(191, 238, 228, 0.1);
}

:root[data-theme="dark"] .proof-strip span {
  color: rgba(239, 248, 244, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.13);
}

:root[data-theme="dark"] .proof-strip span::before {
  width: 5px;
  height: 5px;
  background: rgba(191, 238, 228, 0.82);
  box-shadow: 0 0 0 3px rgba(191, 238, 228, 0.08);
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.section.tight {
  padding: 34px 0 20px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.section-statement {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 820;
  line-height: 1.12;
}

h1,
h2,
h3 {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.metric-grid,
.pricing-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

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

.metric-grid article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-grid article::after {
  position: absolute;
  inset: auto 16px 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal), rgba(217, 144, 50, 0.72));
  border-radius: 999px 999px 0 0;
  opacity: 0.72;
}

.metric-grid strong {
  display: block;
  color: var(--green);
  font-size: 2.1rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 680;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

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

.feature-card,
.price-card,
.tool-card-large,
.blog-card,
.audit-form,
.audit-card,
.service-stack article {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.05);
}

.feature-card,
.price-card,
.blog-card,
.audit-card,
.service-stack article {
  padding: 24px;
}

.feature-card {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 138, 122, 0.28);
  box-shadow: 0 18px 42px rgba(23, 32, 31, 0.08);
}

.icon-chip,
.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(217, 144, 50, 0.14);
  color: #8c5519;
  font-weight: 820;
  font-size: 0.78rem;
}

.feature-card .icon-chip,
.service-stack .icon-chip {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  gap: 8px;
  margin-top: 16px;
  color: var(--green);
  border-bottom: 2px solid rgba(31, 138, 122, 0.28);
  font-weight: 820;
  font-size: 0.98rem;
  line-height: 1.35;
}

.text-link::after {
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.text-link:hover {
  border-bottom-color: var(--teal);
}

.text-link:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.canvas-section {
  width: 100%;
  max-width: none;
  padding: 82px max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 144, 50, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 77, 70, 0.04), transparent 42%),
    var(--surface-soft);
  border-block: 1px solid var(--line);
}

.canvas-section .section-heading {
  display: block;
  max-width: var(--max);
  margin: 0 auto 32px;
  text-align: left;
}

.canvas-section .section-heading h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
}

.canvas-section .section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 0;
}

.tool-shell {
  position: relative;
  display: block;
  width: min(100%, var(--max));
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(23, 32, 31, 0.1);
}

.demo-cursor {
  position: absolute;
  top: 58px;
  left: 98px;
  z-index: 3;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background: #fff;
  border: 1px solid rgba(15, 77, 70, 0.28);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(23, 32, 31, 0.16);
  transform: translate(-50%, -50%);
  transition: left 420ms ease, top 420ms ease;
}

.demo-cursor::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(31, 138, 122, 0.24);
  border-radius: inherit;
  opacity: 0;
}

.demo-cursor.clicking::after {
  animation: cursorClick 620ms ease-out;
}

@keyframes cursorClick {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  34% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.tool-sidebar {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(15, 77, 70, 0.08), transparent 72%),
    #f2f6f3;
  border-bottom: 1px solid var(--line);
}

.tool-sidebar button {
  flex: 0 0 auto;
  width: auto;
  min-width: 220px;
  padding: 13px 24px;
  color: var(--ink-soft);
  text-align: center;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 820;
}

.tool-sidebar button.active {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 12px 24px rgba(15, 77, 70, 0.16);
}

.tool-sidebar button:not(.active):hover {
  color: var(--ink);
  background: rgba(31, 138, 122, 0.08);
  border-color: rgba(31, 138, 122, 0.16);
}

.tool-panel {
  display: none;
  padding: 28px;
}

.tool-panel.active {
  display: block;
  animation: panelReveal 420ms ease both;
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tool-header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.tool-header h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
}

.tool-header .status-pill {
  color: #8c5519;
  background: rgba(217, 144, 50, 0.12);
  border: 1px solid rgba(217, 144, 50, 0.18);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--ink);
  outline: 0;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

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

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.9;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 138, 122, 0.12);
}

.search-row input {
  flex: 1 1 260px;
}

.search-row .button {
  min-width: 120px;
}

.demo-query {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 0 16px;
  background:
    linear-gradient(90deg, rgba(31, 138, 122, 0.06), transparent 70%),
    var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.demo-query span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.demo-query strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
}

.tool-demo .table-wrap tbody tr:first-child td {
  background: rgba(31, 138, 122, 0.045);
}

.bulk-preview {
  display: grid;
  gap: 10px;
}

.bulk-preview span {
  display: block;
  padding: 13px 14px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(31, 138, 122, 0.035), transparent 38%),
    var(--card-bg);
  box-shadow: 0 12px 30px rgba(23, 32, 31, 0.04);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.45;
}

th {
  color: var(--muted);
  background: rgba(15, 77, 70, 0.06);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tbody td {
  color: var(--ink-soft);
}

tbody td:first-child {
  color: var(--ink);
  font-weight: 760;
}

tbody tr:hover td {
  background: rgba(31, 138, 122, 0.045);
}

tr:last-child td {
  border-bottom: 0;
}

.bar {
  display: block;
  width: 96px;
  height: 8px;
  overflow: hidden;
  background: #e5ede9;
  border-radius: 999px;
}

.bar::after {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: var(--teal);
}

.bar.medium::after {
  width: 62%;
  background: var(--amber);
}

.bar.high::after {
  width: 84%;
  background: var(--coral);
}

.score-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.score-board div {
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.score-board strong {
  display: block;
  color: var(--green);
  font-size: 2.3rem;
  line-height: 1;
}

.score-board span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.score-board.compact {
  margin-bottom: 0;
}

.tool-recommendation {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(31, 138, 122, 0.08), transparent 70%),
    var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tool-recommendation span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.tool-recommendation strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.summary-card-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-card-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(31, 138, 122, 0.075), transparent 70%),
    var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.summary-card-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-weight: 850;
  background: rgba(31, 138, 122, 0.09);
  border: 1px solid rgba(31, 138, 122, 0.18);
  border-radius: 999px;
}

.summary-card-grid small {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-card-grid strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  line-height: 1.35;
}

.summary-card-grid p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.credit-deliverables {
  padding-top: 44px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 28px auto 0;
}

.deliverable-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(31, 138, 122, 0.07), transparent 48%),
    var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.05);
}

.deliverable-grid span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  background: rgba(31, 138, 122, 0.08);
  border: 1px solid rgba(31, 138, 122, 0.18);
  border-radius: 999px;
}

.deliverable-grid h3 {
  margin: 18px 0 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.deliverable-grid p {
  margin: 12px 0 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.deliverable-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-grid li {
  padding: 6px 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

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

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

.package-preview {
  position: relative;
}

.package-preview-head {
  max-width: 820px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.package-preview-head h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.6vw, 3.65rem);
  line-height: 1.05;
}

.package-preview-head > p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.package-preview .price-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
}

.package-preview .price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(103, 209, 192, 0.72), rgba(103, 209, 192, 0.22));
  opacity: 0.78;
}

.package-preview .price-card h3 {
  font-size: 1.35rem;
}

.package-preview .price-card > p:not(.plan-kicker):not(.price) {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.package-preview .price {
  margin: 18px 0 18px;
  font-size: clamp(1.85rem, 3.1vw, 2.75rem);
}

.package-preview .price-card ul {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 77, 70, 0.12);
}

.package-preview .plan-kicker {
  display: inline-flex;
  padding: 7px 10px;
  background: rgba(15, 77, 70, 0.065);
  border: 1px solid rgba(15, 77, 70, 0.12);
  border-radius: 999px;
}

.package-preview .price-card.featured .plan-kicker {
  background: rgba(191, 238, 228, 0.12);
  border-color: rgba(191, 238, 228, 0.16);
}

.package-preview .price-card.featured > p:not(.plan-kicker):not(.price) {
  color: rgba(255, 255, 255, 0.82);
}

.package-preview .price-card.featured::before {
  background: linear-gradient(90deg, #bfeee4, #67d1c0);
  opacity: 1;
}

.package-preview .price-card.featured ul {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 26px;
}

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

.pricing-grid.wide.pricing-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  padding-top: 46px;
}

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

.pricing-page-grid .price-card {
  min-height: 520px;
  padding: 30px;
}

.price-card .plan-kicker {
  align-self: flex-start;
}

.price-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 2.4vw, 2.55rem);
  line-height: 1.08;
}

.price-card > p:not(.plan-kicker):not(.price) {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.price-card ul {
  margin: 24px 0 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 77, 70, 0.13);
}

.price-card.featured {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(103, 209, 192, 0.1), transparent 48%),
    var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .plan-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.price-card.featured > p:not(.plan-kicker):not(.price) {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured h2,
.price-card.featured h3,
.price-card.featured .price {
  color: #fff;
}

.price-card.featured ul {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.price {
  margin: 16px 0 10px;
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 860;
  line-height: 1;
}

ul {
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.8;
}

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

.pricing-choice {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
  padding-top: 28px;
}

.pricing-choice h2 {
  max-width: 520px;
}

.pricing-choice > div > p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-list article {
  display: grid;
  grid-template-columns: minmax(76px, max-content) 1fr;
  gap: 16px;
  padding: 18px 22px;
  background:
    linear-gradient(90deg, rgba(31, 138, 122, 0.05), transparent 46%),
    var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.choice-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  background: rgba(31, 138, 122, 0.08);
  border: 1px solid rgba(31, 138, 122, 0.15);
  border-radius: 999px;
  grid-row: 1 / span 2;
}

.choice-list strong {
  display: block;
  grid-column: 2;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.choice-list p {
  grid-column: 2;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section.process-section {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 144, 50, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 77, 70, 0.04), transparent 42%),
    var(--surface-soft);
  border-block: 1px solid var(--line);
}

.process-section > .section-heading,
.process-section > .process-line {
  width: min(100% - 32px, var(--max));
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.process-section > .section-heading {
  margin-bottom: 34px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-line article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-line article::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 46px;
  height: 3px;
  content: "";
  background: var(--teal);
  border-radius: 0 0 999px 999px;
}

.process-line span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 820;
}

.section.proof-section {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 144, 50, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 77, 70, 0.04), transparent 42%),
    var(--surface-soft);
  border-block: 1px solid var(--line);
}

.proof-copy {
  position: relative;
  padding-top: 44px;
}

.proof-lede {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}

.signal-list {
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.signal-list div {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  overflow: hidden;
  padding: 22px 24px;
  background:
    linear-gradient(90deg, rgba(31, 138, 122, 0.05), transparent 48%),
    var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.signal-list div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, rgba(103, 209, 192, 0.78), rgba(31, 138, 122, 0.08));
}

.signal-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 138, 122, 0.24);
  box-shadow: 0 18px 42px rgba(23, 32, 31, 0.08);
}

.signal-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  color: var(--green);
  background: rgba(31, 138, 122, 0.09);
  border: 1px solid rgba(31, 138, 122, 0.18);
  border-radius: 999px;
  box-shadow: none;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.signal-list h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.02rem;
}

.signal-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.58;
}

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

.faq-section .section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 138, 122, 0.035), transparent 36%),
    var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.06);
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
}

summary::after {
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin-top: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cta-band {
  display: flex;
  width: min(100% - 32px, 1180px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 10px auto 78px;
  padding: 28px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(191, 238, 228, 0.2), transparent 24%),
    linear-gradient(120deg, rgba(49, 95, 150, 0.18), transparent 54%),
    var(--green-dark);
  border-radius: var(--radius);
}

:root[data-theme="dark"] .metric-grid article,
:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .price-card,
:root[data-theme="dark"] .blog-card,
:root[data-theme="dark"] .audit-card,
:root[data-theme="dark"] .service-stack article,
:root[data-theme="dark"] .process-line article,
:root[data-theme="dark"] .signal-list div,
:root[data-theme="dark"] .faq-list {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .canvas-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(224, 162, 81, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(103, 209, 192, 0.045), transparent 42%),
    var(--surface-soft);
}

:root[data-theme="dark"] .section.process-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(224, 162, 81, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(103, 209, 192, 0.045), transparent 42%),
    var(--surface-soft);
  border-block-color: var(--line);
}

:root[data-theme="dark"] .section.proof-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(224, 162, 81, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(103, 209, 192, 0.045), transparent 42%),
    var(--surface-soft);
  border-block-color: var(--line);
}

:root[data-theme="dark"] .tool-shell {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .demo-cursor {
  background: #bfeee4;
  border-color: rgba(191, 238, 228, 0.4);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .demo-cursor::after {
  border-color: rgba(191, 238, 228, 0.32);
}

:root[data-theme="dark"] .tool-sidebar {
  background:
    linear-gradient(90deg, rgba(103, 209, 192, 0.08), transparent 72%),
    rgba(255, 255, 255, 0.045);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .tool-sidebar button {
  color: rgba(239, 248, 244, 0.72);
}

:root[data-theme="dark"] .tool-sidebar button.active {
  color: #08201d;
  background: #bfeee4;
  border-color: #bfeee4;
  box-shadow: 0 14px 28px rgba(103, 209, 192, 0.12);
}

:root[data-theme="dark"] .tool-sidebar button:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .table-wrap {
  background:
    linear-gradient(180deg, rgba(103, 209, 192, 0.055), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

:root[data-theme="dark"] th {
  color: rgba(239, 248, 244, 0.68);
  background: rgba(255, 255, 255, 0.065);
}

:root[data-theme="dark"] tbody td {
  color: rgba(239, 248, 244, 0.78);
}

:root[data-theme="dark"] tbody td:first-child {
  color: #f4fbf8;
}

:root[data-theme="dark"] tbody tr:hover td {
  background: rgba(103, 209, 192, 0.055);
}

:root[data-theme="dark"] .demo-query {
  background:
    linear-gradient(90deg, rgba(103, 209, 192, 0.075), transparent 70%),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .demo-query strong {
  color: #f4fbf8;
}

:root[data-theme="dark"] .bulk-preview span {
  color: rgba(239, 248, 244, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .tool-recommendation {
  background:
    linear-gradient(90deg, rgba(103, 209, 192, 0.09), transparent 70%),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .tool-recommendation strong {
  color: #f4fbf8;
}

:root[data-theme="dark"] .summary-card-grid article {
  background:
    linear-gradient(90deg, rgba(103, 209, 192, 0.09), transparent 70%),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .summary-card-grid article > span {
  color: #9ce7d9;
  background: rgba(103, 209, 192, 0.11);
  border-color: rgba(103, 209, 192, 0.22);
}

:root[data-theme="dark"] .summary-card-grid small {
  color: #9ce7d9;
}

:root[data-theme="dark"] .summary-card-grid strong {
  color: #f4fbf8;
}

:root[data-theme="dark"] .summary-card-grid p {
  color: rgba(239, 248, 244, 0.76);
}

:root[data-theme="dark"] .deliverable-grid article {
  background:
    linear-gradient(135deg, rgba(103, 209, 192, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .deliverable-grid span {
  color: #9ce7d9;
  background: rgba(103, 209, 192, 0.1);
  border-color: rgba(103, 209, 192, 0.22);
}

:root[data-theme="dark"] .deliverable-grid li {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .tool-demo .table-wrap tbody tr:first-child td {
  background: rgba(103, 209, 192, 0.07);
}

.cta-band h2 {
  color: #fff;
  max-width: 940px;
  font-size: clamp(1.35rem, 2.05vw, 1.95rem);
  line-height: 1.14;
}

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.cta-band h2 + p {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, 0.7fr));
  gap: 44px;
  padding: 58px max(16px, calc((100vw - var(--max)) / 2)) 54px;
  color: rgba(239, 248, 244, 0.74);
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 209, 192, 0.11), transparent 30%),
    linear-gradient(180deg, #0d1715, #08110f);
  border-top: 1px solid rgba(15, 77, 70, 0.18);
}

.footer p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(239, 248, 244, 0.72);
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 14px;
  color: #f4fbf8;
  font-size: 0.92rem;
}

.footer a {
  display: block;
  width: fit-content;
  margin: 12px 0;
  color: rgba(239, 248, 244, 0.72);
  transition: color 160ms ease, transform 160ms ease;
}

.footer a:hover {
  color: #8de4d7;
  transform: translateX(2px);
}

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4fbf8;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
}

.footer .footer-brand:hover {
  transform: none;
}

.footer-logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: cover;
}

.footer-brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.footer-brand-name span:first-child {
  color: #f4fbf8;
}

.footer-brand-name span:last-child {
  color: #7bdccc;
}

:root[data-theme="dark"] .footer {
  background:
    radial-gradient(circle at 72% 0%, rgba(103, 209, 192, 0.07), transparent 28%),
    linear-gradient(180deg, #0b1513, #070f0e);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.mini-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 72px 0 42px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.1rem;
}

.compact-hero {
  padding-bottom: 24px;
}

.tools-hero {
  padding-top: 78px;
  padding-bottom: 20px;
}

.tools-hero h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 5.2vw, 4.85rem);
}

.tools-hero p:not(.eyebrow) {
  max-width: 840px;
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.packages-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
  padding-top: 78px;
  padding-bottom: 44px;
}

.pricing-hero {
  display: block;
  max-width: var(--max);
  padding-top: 84px;
  padding-bottom: 0;
}

.packages-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5.2vw, 4.65rem);
}

.pricing-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.packages-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 22px;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 850px;
  color: var(--ink-soft);
  font-size: 1.13rem;
  line-height: 1.65;
}

.package-hero-note {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(15, 77, 70, 0.075), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(15, 77, 70, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 52px rgba(23, 32, 31, 0.08);
}

.package-hero-note > span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package-hero-note div {
  padding: 15px 0;
  border-top: 1px solid rgba(15, 77, 70, 0.14);
}

.package-hero-note div:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.package-hero-note div:last-child {
  padding-bottom: 0;
}

.package-hero-note strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}

.package-hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

:root[data-theme="dark"] .package-hero-note {
  background:
    linear-gradient(135deg, rgba(191, 238, 228, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(191, 238, 228, 0.16);
  box-shadow: none;
}

:root[data-theme="dark"] .package-hero-note div {
  border-top-color: rgba(191, 238, 228, 0.13);
}

:root[data-theme="dark"] .package-hero-note strong {
  color: var(--ink);
}

:root[data-theme="dark"] .package-preview .price-card ul {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.resource-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 40px;
  align-items: end;
  padding-bottom: 34px;
}

.resource-hero h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

.resource-note {
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.06);
}

.resource-note span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-note strong {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
}

.resource-note p {
  margin-bottom: 0;
}

.resource-index-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.resource-index-hero {
  padding-bottom: 26px;
}

.resource-index-hero > div > p {
  max-width: 850px;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.resource-library {
  padding-top: 0;
}

.resource-library-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.resource-library-head h2 {
  max-width: 620px;
}

.resource-library-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.resource-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.resource-topic-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(31, 138, 122, 0.08);
  border: 1px solid rgba(31, 138, 122, 0.18);
  border-radius: 999px;
}

.resource-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resource-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.resource-card h2 {
  font-size: clamp(1.32rem, 1.65vw, 1.72rem);
  min-height: 118px;
}

.resource-card small {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
  min-height: 72px;
}

.resource-card span {
  align-self: end;
  margin-top: 26px;
}

.featured-resource {
  background:
    linear-gradient(135deg, rgba(191, 238, 228, 0.16), rgba(255, 255, 255, 0.72)),
    var(--card-bg);
  border-color: rgba(31, 138, 122, 0.22);
}

:root[data-theme="dark"] .resource-topic-row span {
  background: rgba(191, 238, 228, 0.08);
  border-color: rgba(191, 238, 228, 0.18);
}

:root[data-theme="dark"] .featured-resource {
  background:
    linear-gradient(135deg, rgba(191, 238, 228, 0.08), rgba(255, 255, 255, 0.025)),
    var(--card-bg);
  border-color: rgba(191, 238, 228, 0.18);
}

.tool-page-grid,
.tool-hub-grid,
.service-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 28px;
}

.services-hero h1 {
  max-width: 960px;
  font-size: clamp(2.5rem, 5.2vw, 4.85rem);
}

.services-hero p:not(.eyebrow) {
  max-width: 820px;
}

.service-stack {
  gap: 20px;
  padding-top: 28px;
}

.service-stack article {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 30px;
}

.service-stack article h2 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.06;
}

.service-stack article p {
  max-width: 680px;
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.service-stack article ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.service-stack .icon-chip {
  width: fit-content;
  margin-bottom: 24px;
  border-radius: 999px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.05);
}

.service-card.featured {
  background:
    linear-gradient(135deg, rgba(103, 209, 192, 0.08), transparent 42%),
    var(--card-bg);
}

.service-card .icon-chip {
  width: fit-content;
  margin-bottom: 22px;
  border-radius: 999px;
}

.service-card h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.85rem, 2.75vw, 2.75rem);
  line-height: 1.06;
}

.service-price {
  margin: 18px 0 16px;
  color: var(--green);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 860;
  line-height: 1;
}

.service-card > p:not(.service-price) {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 28px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.service-card .button {
  align-self: end;
  width: fit-content;
  min-height: 44px;
  color: var(--green-dark);
  background: #bfeee4;
  box-shadow: 0 12px 26px rgba(103, 209, 192, 0.12);
}

:root[data-theme="dark"] .service-card {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card .icon-chip {
  color: var(--teal);
  background: rgba(103, 209, 192, 0.11);
  border: 1px solid rgba(103, 209, 192, 0.16);
}

:root[data-theme="dark"] .service-card .icon-chip {
  color: #7de1d2;
  background: rgba(103, 209, 192, 0.12);
  border-color: rgba(103, 209, 192, 0.18);
}

.service-detail-hero h1 {
  max-width: 940px;
  font-size: clamp(2.5rem, 5.2vw, 4.85rem);
}

.service-detail-hero p:not(.eyebrow) {
  max-width: 800px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 20px;
  align-items: start;
  padding-top: 30px;
}

.service-detail-main {
  display: grid;
  gap: 20px;
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.05);
}

.service-detail-main h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.service-detail-main p:not(.service-price),
.service-detail-main li {
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-detail-main ul {
  margin: 0;
}

:root[data-theme="dark"] .service-detail-main {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.growth-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 64px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 58px;
}

.growth-hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
}

.growth-hero p:not(.eyebrow) {
  max-width: 850px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.65;
}

.growth-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.growth-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--green-dark);
  background: rgba(31, 138, 122, 0.08);
  border: 1px solid rgba(31, 138, 122, 0.2);
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.growth-hero-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 330px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(103, 209, 192, 0.15), transparent 58%),
    var(--green-dark);
  border: 1px solid rgba(103, 209, 192, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.growth-hero-card span,
.growth-stack article span,
.growth-cta span {
  color: var(--mint);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.growth-hero-card strong {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
}

.growth-hero .growth-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.growth-hero-card ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 14px 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.96rem;
  line-height: 1.45;
}

.growth-hero-card li::marker {
  color: var(--mint);
}

.growth-hero-card .button {
  margin-top: 10px;
}

.growth-intro,
.growth-outcome,
.growth-fit,
.growth-cta {
  width: min(100% - 32px, var(--max));
}

.growth-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.growth-intro h2,
.growth-outcome h2,
.growth-fit h2,
.growth-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
}

.growth-intro > div > p,
.growth-outcome-copy p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.growth-benefits,
.growth-stack,
.growth-outcome-list {
  display: grid;
  gap: 14px;
}

.growth-benefits article,
.growth-stack article,
.growth-outcome-list article,
.growth-fit > div {
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.growth-benefits article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: start;
}

.growth-benefits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: rgba(103, 209, 192, 0.12);
  border: 1px solid rgba(31, 138, 122, 0.2);
  border-radius: 50%;
}

.growth-benefits h3,
.growth-stack h3 {
  margin: 0;
  font-size: 1.35rem;
}

.growth-benefits p,
.growth-stack p,
.growth-outcome-list span,
.growth-fit li {
  color: var(--ink-soft);
  line-height: 1.65;
}

.growth-benefits p {
  grid-column: 2;
  margin: 6px 0 0;
}

.growth-stack-section {
  width: min(100% - 32px, var(--max));
}

.section-heading.align-left {
  align-items: start;
  text-align: left;
}

.section-heading.align-left h2,
.section-heading.align-left p {
  margin-right: 0;
  margin-left: 0;
}

.growth-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.growth-stack article {
  display: grid;
  gap: 12px;
  min-height: 230px;
}

.growth-outcome {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

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

.growth-outcome-list article {
  display: grid;
  gap: 8px;
}

.growth-outcome-list strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.growth-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.growth-fit ul {
  margin: 18px 0 0;
}

.growth-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 76px;
  padding: 34px 38px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18, 72, 83, 0.92), rgba(15, 77, 70, 0.94)),
    var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.growth-cta h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.growth-cta p {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.58;
}

.growth-cta .button {
  min-width: 220px;
  justify-content: center;
}

:root[data-theme="dark"] .growth-benefits article,
:root[data-theme="dark"] .growth-stack article,
:root[data-theme="dark"] .growth-outcome-list article,
:root[data-theme="dark"] .growth-fit > div {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .growth-hero-proof span {
  color: #bfeee4;
  background: rgba(191, 238, 228, 0.08);
  border-color: rgba(191, 238, 228, 0.18);
}

.tool-page-grid,
.tool-hub-grid {
  padding-top: 26px;
}

.tool-card-large {
  display: grid;
  gap: 22px;
  min-height: 360px;
  padding: 28px;
}

.tool-page-grid .tool-card-large {
  align-content: start;
  min-height: 0;
  padding: 30px;
}

.tool-page-grid .tool-card-large h2 {
  max-width: 680px;
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
  line-height: 1.04;
}

.tool-page-grid .tool-card-large p:not(.eyebrow):not(.muted) {
  max-width: 640px;
}

.tool-page-grid .score-board {
  margin-top: auto;
  margin-bottom: 0;
}

.tool-hub-grid .tool-card-large {
  gap: 26px;
  min-height: 300px;
  padding: 30px;
}

.tool-hub-grid .tool-card-large h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.tool-hub-grid .tool-card-large p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.tool-hub-grid .tool-card-large .button {
  align-self: end;
  width: fit-content;
  min-height: 44px;
  color: #073b33;
  background: #bfeee4;
  border-color: #bfeee4;
  box-shadow: 0 12px 26px rgba(103, 209, 192, 0.12);
}

.tool-hub-grid .tool-card-large .button:hover {
  color: #052f29;
  background: #d3f4ed;
  border-color: #d3f4ed;
}

.tool-detail-hero {
  padding-bottom: 18px;
}

.tool-detail-hero h1 {
  max-width: 880px;
  font-size: clamp(2.5rem, 5.4vw, 4.85rem);
}

.tool-detail-hero p:not(.eyebrow) {
  max-width: 780px;
}

.tool-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 20px;
  align-items: start;
  padding-top: 30px;
}

.tool-workspace,
.tool-side-panel {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.05);
}

.tool-workspace {
  padding: 28px;
}

.tool-side-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.tool-side-panel h2 {
  margin: 0;
  font-size: 1.35rem;
}

.tool-side-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-side-panel li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}

.tool-side-panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 999px;
}

.large-tags span {
  padding: 14px 16px;
  font-size: 1.02rem;
}

.mini-tool label {
  display: block;
  margin: 18px 0 10px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.mini-tool label:first-child {
  margin-top: 0;
}

.mini-tool .button[type="submit"] {
  margin-top: 18px;
}

.research-check-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.research-check-options legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.research-check-options label {
  display: block;
  margin: 0;
  cursor: pointer;
}

.research-check-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.research-check-options span {
  position: relative;
  display: grid;
  gap: 8px;
  box-sizing: border-box;
  min-height: 112px;
  padding: 18px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.research-check-options em {
  position: absolute;
  top: 12px;
  right: 12px;
  display: none;
  padding: 4px 8px;
  color: #fff;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  background: var(--teal);
  border-radius: 999px;
}

.research-check-options strong {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  padding-right: 76px;
}

.research-check-options small {
  color: var(--teal);
  font-weight: 850;
}

.research-check-options label:has(input:checked) span {
  background:
    linear-gradient(135deg, rgba(31, 138, 122, 0.18), rgba(31, 138, 122, 0.06)),
    var(--card-bg);
  border-color: var(--teal);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(31, 138, 122, 0.14), 0 14px 30px rgba(23, 32, 31, 0.08);
}

.research-check-options label:has(input:checked) em {
  display: inline-flex;
}

.research-check-options label:has(input:checked) small {
  color: #0b6f65;
}

.tool-empty-state {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.tool-output-title {
  margin: 22px 0 -4px;
  font-size: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 10px 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.service-stack article {
  min-height: 360px;
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.audit-form label {
  color: var(--ink);
  font-weight: 760;
}

.audit-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  border: 0;
}

.audit-options legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 760;
}

.audit-options label {
  position: relative;
  min-height: 88px;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.audit-options label:has(input:checked) {
  border-color: rgba(31, 138, 122, 0.68);
  background: rgba(31, 138, 122, 0.13);
  box-shadow: 0 0 0 4px rgba(31, 138, 122, 0.1);
}

.audit-options input {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--teal);
}

.audit-options strong,
.audit-options small {
  display: block;
}

.audit-options small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1.35;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  margin-top: 8px;
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 760;
}

.form-message[data-state="error"] {
  color: var(--coral);
}

.notification-source {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.toast-region {
  position: fixed;
  z-index: 1000;
  top: 84px;
  right: 18px;
  display: grid;
  width: min(390px, calc(100vw - 28px));
  gap: 10px;
  pointer-events: none;
}

.toast {
  position: relative;
  display: grid;
  grid-template-columns: 5px 1fr 32px;
  gap: 13px;
  align-items: start;
  min-height: 64px;
  padding: 14px 12px 14px 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: 2px;
  box-shadow: 7px 7px 0 rgba(21, 24, 23, 0.14);
  pointer-events: auto;
  animation: toast-enter 180ms ease-out both;
}

.toast-indicator {
  align-self: stretch;
  background: var(--blue);
}

.toast-success .toast-indicator {
  background: var(--teal);
}

.toast-error .toast-indicator {
  background: var(--coral);
}

.toast p {
  margin: 1px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.toast button {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.toast button span {
  position: absolute;
  top: 15px;
  left: 8px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.toast button span:first-child {
  transform: rotate(45deg);
}

.toast button span:last-child {
  transform: rotate(-45deg);
}

.toast-leaving {
  animation: toast-leave 180ms ease-in both;
}

@keyframes toast-enter {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-leave {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-6px); }
}

:root[data-theme="dark"] .toast {
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.34);
}

.success-dialog[hidden] {
  display: none;
}

.success-dialog {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 14, 0.64);
  backdrop-filter: blur(4px);
}

.success-dialog-panel {
  position: relative;
  width: min(100%, 470px);
  padding: 38px 34px 32px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: 3px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

.success-check {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  background: #13745f;
  border-radius: 50%;
}

.success-check i {
  width: 27px;
  height: 15px;
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: translateY(-3px) rotate(-45deg);
}

.success-dialog-kicker {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-dialog-panel h2 {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1.12;
}

.success-dialog-panel > p:not(.success-dialog-kicker) {
  margin: 14px auto 24px;
  max-width: 360px;
  font-size: 1rem;
}

.success-dialog-panel .button {
  min-width: 132px;
}

:root[data-theme="dark"] .success-dialog-backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.growth-request-layout {
  padding-top: 30px;
}

.growth-options input {
  border-radius: 4px;
}

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

.timeline-options label {
  min-height: 82px;
}

.growth-request-card {
  display: grid;
  gap: 22px;
}

.growth-request-note {
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.growth-request-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.growth-request-note p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.blog-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 40px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 26px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(23, 32, 31, 0.1);
}

.blog-card p {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 18px 0 0;
  font-size: 1.22rem;
  line-height: 1.24;
}

.blog-card span {
  display: block;
  color: var(--muted);
  font-weight: 720;
}

.legal-page {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 72px 0 112px;
}

.article-page {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 70px 0 110px;
}

.article-page h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.04;
}

.article-back-link {
  display: flex;
  margin-top: 0;
  margin-bottom: 20px;
}

.article-category {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: var(--green);
  background: rgba(191, 238, 228, 0.32);
  border: 1px solid rgba(31, 138, 122, 0.18);
  border-radius: 999px;
}

:root[data-theme="dark"] .article-category {
  color: #8de4d7;
  background: rgba(191, 238, 228, 0.08);
  border-color: rgba(191, 238, 228, 0.16);
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-page p,
.article-page li {
  font-size: 1.05rem;
  line-height: 1.72;
}

.article-page ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-page li + li {
  margin-top: 6px;
}

.article-lede {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-visual {
  width: min(100vw - 32px, 1060px);
  margin: 34px 0 36px 50%;
  transform: translateX(-50%);
}

.article-visual-map {
  position: relative;
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(23, 32, 31, 0.12);
}

.article-visual .article-visual-base {
  border: 1px solid var(--line);
}

.article-visual-map > .article-visual-base-dark {
  display: none;
}

:root[data-theme="dark"] .article-visual-map > .article-visual-base:not(.article-visual-base-dark) {
  display: none;
}

:root[data-theme="dark"] .article-visual-map > .article-visual-base-dark {
  display: block;
}

.article-agent-logo {
  position: absolute;
  display: grid;
  width: 3.35%;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
}

.article-agent-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.article-agent-chatgpt {
  left: 81.6%;
  top: 34.5%;
}

.article-agent-chatgpt img {
  filter: invert(1) brightness(1.2);
}

.article-agent-claude {
  left: 81.6%;
  top: 52.3%;
}

.article-agent-gemini {
  left: 81.6%;
  top: 70%;
}

.article-agent-perplexity {
  width: 3.55%;
  left: 81.6%;
  top: 87.7%;
}

:root[data-theme="dark"] .article-visual img {
  border-color: rgba(191, 238, 228, 0.16);
  box-shadow: none;
}

:root[data-theme="dark"] .article-agent-logo img {
  border: 0;
}

.article-callout,
.article-next {
  margin: 34px 0;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.05);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-callout p,
.article-next p {
  margin: 0;
}

.article-next h2 {
  margin-top: 0;
}

.article-next .text-link {
  margin-top: 18px;
}

.legal-page h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

.legal-page h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.legal-page p,
.legal-page li {
  color: var(--body);
  font-size: 1.04rem;
  line-height: 1.72;
}

.legal-page ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-page li + li {
  margin-top: 7px;
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.legal-lede {
  max-width: 820px;
  margin: 28px 0 44px;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.62;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-note {
  margin-top: 14px;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-note h2 {
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

:root[data-theme="dark"] .legal-note h2 {
  color: #67d1c0;
}

:root[data-theme="dark"] .legal-note {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(191, 238, 228, 0.16);
}

@media (max-width: 980px) {
  .metric-grid,
  .pricing-grid,
  .pricing-grid.wide,
  .pricing-grid.wide.pricing-page-grid,
  .process-line,
  .deliverable-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .audit-layout,
  .resource-hero,
  .resource-library-head,
  .packages-hero,
  .pricing-choice,
  .growth-hero,
  .growth-intro,
  .growth-outcome,
  .growth-fit {
    grid-template-columns: 1fr;
  }

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

  .growth-hero-card {
    max-width: 520px;
  }

  .section.proof-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .proof-copy {
    padding-top: 0;
  }

  .packages-hero {
    gap: 28px;
  }

  .resource-library-head {
    align-items: start;
  }

  .package-preview-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-preview .price-card {
    min-height: auto;
  }

  .hero {
    background:
      radial-gradient(circle at 70% 82%, rgba(217, 144, 50, 0.2), transparent 32%),
      var(--hero-panel);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-media img {
    width: min(100%, 720px);
    margin: 0;
  }

  .visibility-console {
    width: min(100%, 720px);
    margin: 0;
  }

  .tool-shell {
    min-height: auto;
  }

  .tool-sidebar {
    overflow-x: auto;
  }

  .tool-sidebar button {
    min-width: 220px;
    text-align: center;
  }

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

@media (max-width: 720px) {
  .site-header {
    width: 100%;
    min-height: 70px;
    padding: 0 16px;
  }

  .toast-region {
    top: 76px;
    right: 14px;
  }

  .success-dialog-panel {
    padding: 32px 22px 26px;
  }

  .success-dialog-panel h2 {
    font-size: 1.55rem;
  }

  .brand {
    min-height: 42px;
    padding: 4px 9px 4px 5px;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 70px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-dropdown,
  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    padding: 10px 11px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    box-shadow: none;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .theme-switch {
    align-self: flex-start;
    margin: 4px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 720px);
    padding: 44px 0 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .visibility-console {
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .console-metrics,
  .console-main {
    grid-template-columns: 1fr;
  }

  .console-body {
    padding: 16px;
  }

  .console-title {
    gap: 12px;
    align-items: flex-start;
  }

  .console-title em {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .console-metrics article {
    min-height: auto;
    padding: 14px;
  }

  .console-chart {
    padding: 16px 14px 10px;
  }

  .console-chart svg {
    max-height: 210px;
  }

  .agent-panel {
    grid-template-columns: 1fr;
  }

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

  .proof-strip {
    gap: 8px;
    margin-top: 30px;
  }

  .proof-strip span {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .resource-note {
    padding: 20px;
  }

  .page-hero h1,
  .resource-hero h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .resource-index-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .resource-card {
    min-height: auto;
  }

  .metric-grid,
  .service-grid,
  .deliverable-grid,
  .pricing-grid,
  .pricing-grid.wide,
  .pricing-grid.wide.pricing-page-grid,
  .process-line,
  .tool-page-grid,
  .tool-hub-grid,
  .tool-detail-layout,
  .service-hub-grid,
  .service-detail-layout,
  .service-stack,
  .blog-grid,
  .score-board {
    grid-template-columns: 1fr;
  }

  .growth-stack,
  .growth-outcome-list,
  .growth-cta {
    grid-template-columns: 1fr;
  }

  .growth-hero {
    width: min(100% - 28px, var(--max));
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .growth-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .growth-hero-card,
  .growth-benefits article,
  .growth-stack article,
  .growth-outcome-list article,
  .growth-fit > div,
  .growth-cta {
    padding: 22px;
  }

  .growth-benefits article {
    grid-template-columns: 1fr;
  }

  .growth-benefits p {
    grid-column: auto;
  }

  .growth-cta {
    align-items: stretch;
    margin-bottom: 52px;
  }

  .growth-cta .button {
    width: 100%;
    justify-content: center;
  }

  .pricing-grid.wide.pricing-page-grid {
    gap: 16px;
    padding-top: 30px;
  }

  .pricing-page-grid .price-card {
    min-height: auto;
  }

  .price-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .price {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .section,
  .canvas-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.process-section {
    width: 100%;
    max-width: none;
  }

  .section.proof-section {
    width: 100%;
    max-width: none;
    padding-right: 14px;
    padding-left: 14px;
  }

  .canvas-section {
    padding-inline: 14px;
  }

  .page-hero,
  .compact-hero,
  .legal-page,
  .article-page {
    width: min(100% - 28px, var(--max));
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .tools-hero {
    padding-top: 52px;
    padding-bottom: 36px;
  }

  .page-hero.resource-index-hero {
    padding-bottom: 22px;
  }

  .section.resource-library {
    padding-top: 0;
  }

  .article-page h1,
  .legal-page h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .article-lede {
    font-size: 1.04rem;
  }

  .tool-panel,
  .tool-card-large,
  .tool-workspace,
  .tool-side-panel,
  .service-card,
  .service-detail-main,
  .price-card,
  .feature-card,
  .audit-form,
  .audit-card {
    padding: 20px;
  }

  .audit-options {
    grid-template-columns: 1fr;
  }

  .tool-shell {
    box-shadow: 0 16px 40px rgba(23, 32, 31, 0.08);
  }

  .demo-cursor {
    width: 14px;
    height: 14px;
    box-shadow: 0 8px 18px rgba(23, 32, 31, 0.14);
  }

  .demo-cursor::after {
    inset: -7px;
  }

  .tool-panel {
    padding: 18px;
  }

  .tool-header {
    margin-bottom: 18px;
  }

  .tool-header h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .search-row {
    gap: 10px;
  }

  .search-row input {
    flex-basis: 100%;
  }

  .search-row .button {
    width: 100%;
  }

  .research-check-options {
    grid-template-columns: 1fr;
  }

  .tool-hub-grid .tool-card-large .button {
    width: 100%;
  }

  .service-card .button {
    width: 100%;
  }

  .demo-query {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap table {
    min-width: 0;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tr {
    display: grid;
    gap: 14px;
    margin-bottom: 12px;
    padding: 18px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .table-wrap td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .table-wrap td:last-child {
    border-bottom: 0;
  }

  .tool-demo .table-wrap tbody tr:first-child td {
    background: transparent;
  }

  :root[data-theme="dark"] .tool-demo .table-wrap tbody tr:first-child td {
    background: transparent;
  }

  .table-wrap td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 820;
    text-transform: uppercase;
  }

  .bar {
    width: 84px;
  }

  .tool-header,
  .cta-band,
  .mini-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    margin-bottom: 60px;
    padding: 24px;
  }

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

  table {
    min-width: 560px;
  }

  input,
  select,
  textarea {
    width: 100%;
    min-width: 0;
  }
}

/* Account access and onboarding */
.nav-auth-link,
.nav-signout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 11px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.nav-auth-link:hover,
.nav-signout:hover {
  color: var(--green);
  background: var(--surface-soft);
}

.auth-main {
  min-height: calc(100svh - 68px);
  display: grid;
  place-items: center;
  padding: 64px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    var(--surface-warm);
}

.auth-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(64px, 9vw, 140px);
  align-items: center;
}

.auth-layout-signin {
  max-width: 1040px;
}

.auth-intro {
  max-width: 590px;
}

.auth-intro h1,
.onboarding-heading h1,
.account-heading h1 {
  margin: 14px 0 20px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.auth-intro > p:not(.eyebrow),
.onboarding-heading > p:not(.eyebrow),
.account-heading > div > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.auth-benefits {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.auth-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 650;
}

.auth-benefits li::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.auth-form {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.auth-form-heading {
  margin-bottom: 4px;
}

.auth-form-heading > span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-form-heading h2 {
  margin: 7px 0 5px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.auth-form-heading p,
.auth-form label small {
  color: var(--muted);
  font-size: 0.88rem;
}

.auth-form a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-form label:not(.auth-checkbox) {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.auth-form input:not([type="checkbox"]),
.auth-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--teal);
  outline: 3px solid color-mix(in srgb, var(--teal) 18%, transparent);
}

.auth-checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.auth-checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.auth-form .button {
  width: 100%;
  min-height: 49px;
}

.auth-form .form-message {
  min-height: 0;
  margin: -6px 0 0;
}

.auth-field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.onboarding-layout {
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.onboarding-heading {
  position: sticky;
  top: 120px;
}

.onboarding-heading h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.1rem);
}

.account-loading {
  min-height: calc(100svh - 68px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.account-loading[hidden] {
  display: none;
}

[data-protected-content][hidden] {
  display: none !important;
}

.account-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.account-heading {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.account-heading h1 {
  max-width: 800px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.account-heading .button {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.account-summary {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1.4fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-summary article {
  min-width: 0;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.account-summary article:last-child {
  border-right: 0;
}

.account-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-summary strong {
  max-width: 100%;
  margin: 12px 0 22px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.account-summary a,
.account-profile a,
.account-next .text-link {
  margin-top: auto;
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: clamp(50px, 8vw, 110px);
  padding-top: 70px;
}

.account-section-heading h2,
.account-next h2 {
  margin: 8px 0 24px;
  font-size: 2rem;
}

.account-profile dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.account-profile dl > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.account-profile dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.account-profile dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.account-next {
  padding-left: 32px;
  border-left: 3px solid var(--amber);
}

.account-next > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.account-next > div {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .auth-main {
    display: block;
    background: var(--surface-warm);
  }

  .auth-layout,
  .onboarding-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .auth-intro,
  .onboarding-heading {
    position: static;
    max-width: 680px;
  }

  .auth-form {
    width: min(100%, 620px);
  }

  .account-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-summary {
    grid-template-columns: 1fr 1fr;
  }

  .account-summary article:nth-child(2) {
    border-right: 0;
  }

  .account-summary article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .account-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .auth-page-nav {
    position: static;
    inset: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .auth-page-nav > a,
  .auth-page-nav .nav-auth-link {
    display: none;
  }

  .auth-page-nav .nav-signout {
    display: inline-flex;
  }

  .auth-page-nav .theme-switch {
    display: grid;
  }

  .auth-main {
    min-height: calc(100svh - 64px);
    padding: 46px 14px 70px;
  }

  .auth-intro h1,
  .onboarding-heading h1,
  .account-heading h1 {
    font-size: 2.45rem;
  }

  .auth-benefits {
    display: none;
  }

  .auth-form {
    padding: 24px 18px;
  }

  .auth-field-pair {
    grid-template-columns: 1fr;
  }

  .account-main {
    width: min(100% - 28px, 1180px);
    padding: 50px 0 76px;
  }

  .account-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .account-summary {
    grid-template-columns: 1fr;
  }

  .account-summary article,
  .account-summary article:nth-child(2) {
    min-height: 145px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .account-summary article:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .account-content {
    gap: 48px;
    padding-top: 52px;
  }

  .account-profile dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .account-next {
    padding-left: 20px;
  }

  .account-next > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 9px;
    font-size: 0.98rem;
  }

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

  .hero-inner,
  .section,
  .canvas-section,
  .page-hero,
  .compact-hero,
  .legal-page,
  .article-page {
    width: min(100% - 24px, var(--max));
  }

  .section.process-section {
    width: 100%;
  }

  .section.proof-section {
    width: 100%;
  }

  .signal-list div {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .signal-list span {
    width: 34px;
    height: 34px;
    font-size: 0.66rem;
  }

  .process-section > .section-heading,
  .process-section > .process-line {
    width: min(100% - 24px, var(--max));
  }

  .hero h1 {
    font-size: clamp(1.86rem, 9.4vw, 2.28rem);
  }

  .hero-actions,
  .search-row {
    align-items: stretch;
  }

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

  .proof-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .console-body {
    padding: 14px;
  }

  .console-title {
    flex-direction: column;
  }

  .console-title em {
    align-self: flex-start;
  }

  .chart-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .agent-row {
    grid-template-columns: 24px 1fr;
    gap: 10px;
  }

  .agent-mark {
    width: 24px;
    height: 24px;
  }

  .agent-mark img {
    width: 20px;
    height: 20px;
  }

  .tool-sidebar button {
    min-width: 126px;
    padding: 11px 10px;
    font-size: 0.84rem;
  }

  .table-wrap tr {
    padding: 16px;
  }

  .table-wrap td {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-cursor,
  .demo-cursor::after,
  .tool-panel.active {
    animation: none;
  }
}

/* 2026 editorial rebuild: a quieter, evidence-first RUFHUB system. */
:root {
  --ink: #151817;
  --ink-soft: #424846;
  --muted: #707775;
  --line: #cdd3cf;
  --surface: #ffffff;
  --surface-soft: #f1f3f0;
  --surface-warm: #f8f8f5;
  --green: #0b5b4d;
  --green-dark: #073b33;
  --teal: #0b7562;
  --amber: #e8b84a;
  --card-bg: #ffffff;
  --header-bg: rgba(248, 248, 245, 0.96);
  --hero-panel: #f8f8f5;
  --hero-ink: #151817;
  --hero-copy: #424846;
  --hero-eyebrow: #0b5b4d;
  --radius: 3px;
  --shadow: 0 12px 32px rgba(21, 24, 23, 0.08);
  --max: 1180px;
}

:root[data-theme="dark"] {
  --ink: #f0f1ed;
  --ink-soft: #c5cac6;
  --muted: #929b96;
  --line: #3a423e;
  --surface: #131715;
  --surface-soft: #1a201d;
  --surface-warm: #101412;
  --green: #78c8b4;
  --green-dark: #9dd8ca;
  --teal: #78c8b4;
  --card-bg: #131715;
  --header-bg: rgba(16, 20, 18, 0.96);
  --hero-panel: #101412;
  --hero-ink: #f0f1ed;
  --hero-copy: #c5cac6;
}

body {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  background: var(--surface-warm);
  font-size: 16px;
}

p {
  line-height: 1.58;
}

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 650;
}

h3,
.brand,
.footer .footer-brand {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  min-height: 68px;
  padding-inline: max(20px, calc((100vw - 1360px) / 2));
  border-bottom-color: var(--line);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.brand {
  min-height: auto;
  gap: 9px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-logo {
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 2px;
}

.nav-links {
  gap: 3px;
}

.nav-links a,
.nav-dropdown-toggle {
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.current {
  background: var(--surface-soft);
}

.nav-links .nav-cta {
  margin-left: 12px;
  padding: 10px 15px;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  border-radius: 2px;
  box-shadow: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  background: var(--green);
}

.nav-dropdown-menu {
  top: calc(100% + 14px);
  padding: 6px;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(21, 24, 23, 0.12);
}

.theme-switch {
  grid-template-columns: repeat(2, 28px);
  height: 34px;
  margin-left: 8px;
  padding: 2px;
  border-radius: 2px;
}

.theme-choice {
  width: 28px;
  height: 28px;
  border-radius: 1px;
}

.theme-choice.active {
  box-shadow: none;
}

.hero {
  min-height: min(780px, calc(100svh - 68px));
  overflow: visible;
  background: var(--hero-panel);
  border-bottom-color: var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(21, 24, 23, 0.055) 1px);
  background-size: calc(100% / 6) 100%;
}

:root[data-theme="dark"] .hero::before {
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255, 255, 255, 0.045) 1px);
}

.hero-inner {
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.74fr);
  gap: clamp(52px, 7vw, 112px);
  width: min(100% - 48px, var(--max));
  padding: 88px 0 76px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 5.2vw, 5.25rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.eyebrow,
.small-label,
.plan-kicker,
.section-index {
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.button {
  min-height: 46px;
  padding: 12px 17px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 0.94rem;
  font-weight: 650;
}

.button-primary {
  background: var(--green-dark);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--green);
  transform: none;
}

.button-secondary,
.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button-secondary:hover,
.button-outline:hover {
  background: var(--ink);
  color: var(--surface);
  transform: none;
}

.hero-actions {
  margin-top: 32px;
}

.platform-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.platform-line > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
}

.platform-line > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.platform-line img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.76;
}

.audit-board {
  position: relative;
  align-self: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink);
}

.audit-board::before {
  position: absolute;
  top: -9px;
  right: -9px;
  bottom: 9px;
  left: 9px;
  z-index: -1;
  content: "";
  border: 1px solid var(--line);
}

.audit-board-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.audit-board-head small {
  color: var(--muted);
  font-size: 0.76rem;
}

.audit-board-list {
  margin: 0;
  padding: 0 20px;
  list-style: none;
}

.audit-board-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.audit-board-list li > span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
}

.audit-board-list strong {
  font-size: 0.96rem;
}

.audit-board-list p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: 94px 0;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.02;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.02;
}

.section-index {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.split-section {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 110px);
}

.service-grid {
  display: block;
  border-top: 1px solid var(--ink);
}

.feature-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-card:hover {
  transform: none;
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.feature-card .icon-chip,
.service-stack .icon-chip {
  min-height: 0;
  margin: 3px 0 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
}

.feature-card h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  font-size: 0.94rem;
}

.feature-card > a {
  margin-top: 2px;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 650;
}

.canvas-section {
  padding-block: 94px;
  background: var(--surface-soft);
  border-color: var(--line);
}

.canvas-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

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

.tool-shell {
  border-color: var(--ink);
  border-radius: 2px;
  box-shadow: 8px 8px 0 var(--line);
}

.tool-sidebar,
.tool-panel,
.tool-header,
.table-wrap,
.demo-query,
.tool-recommendation,
.bulk-preview span,
.score-board div {
  border-radius: 0;
}

.credit-deliverables,
.package-preview,
.proof-section,
.faq-section {
  border-top: 1px solid var(--line);
}

.deliverable-grid {
  gap: 0;
  border-block: 1px solid var(--ink);
}

.deliverable-grid article {
  min-height: 330px;
  padding: 24px 22px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.deliverable-grid article:last-child {
  border-right: 0;
}

.deliverable-grid span {
  padding: 0;
  color: var(--green);
  background: transparent;
}

.package-preview-head {
  align-items: end;
}

.pricing-grid {
  gap: 0;
  border-block: 1px solid var(--ink);
}

.price-card,
.service-card,
.tool-card-large,
.blog-card,
.audit-card,
.audit-form,
.service-stack article,
.service-detail-main,
.tool-side-panel,
.tool-workspace,
.growth-hero-card,
.growth-benefits article,
.growth-stack article,
.growth-outcome-list article,
.growth-fit > div {
  border-radius: 2px;
  box-shadow: none;
}

.package-preview .price-card,
.pricing-grid > .price-card {
  border-width: 0 1px 0 0;
  border-color: var(--line);
  border-radius: 0;
  box-shadow: none;
}

.package-preview .price-card:last-child,
.pricing-grid > .price-card:last-child {
  border-right: 0;
}

.package-preview .price-card::before {
  display: none;
}

.price-card.featured {
  color: #f5f6f2;
  background: #0b4138;
  border-color: #0b4138;
  transform: none;
}

.section.proof-section {
  background: var(--surface-warm);
}

.signal-list {
  border-top: 1px solid var(--ink);
}

.signal-list div {
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.signal-list div::before {
  display: none;
}

.signal-list div:hover {
  transform: none;
  box-shadow: none;
}

.signal-list span {
  border-radius: 1px;
}

.faq-list {
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.faq-list details {
  padding-inline: 0;
}

.page-hero {
  padding-top: 90px;
  padding-bottom: 48px;
}

.page-hero h1,
.packages-hero h1,
.pricing-hero h1,
.tools-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.service-hub-grid,
.tool-hub-grid,
.pricing-grid.wide.pricing-page-grid {
  gap: 14px;
}

.section.pricing-choice {
  padding-top: 42px;
  padding-bottom: 82px;
}

.choice-list {
  gap: 0;
  border-top: 1px solid var(--ink);
}

.choice-list article {
  grid-template-columns: 42px minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.choice-list span {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  grid-row: auto;
}

.choice-list strong {
  grid-column: auto;
  margin: 0;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
}

.choice-list p {
  grid-column: auto;
  font-size: 0.9rem;
}

.service-card,
.tool-card-large {
  border-top: 3px solid var(--green);
}

.service-card h2,
.tool-hub-grid .tool-card-large h2,
.price-card h2 {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

input,
select,
textarea {
  border-radius: 2px;
  box-shadow: none;
}

.footer {
  padding-top: 64px;
  background: #101412;
  border-top: 5px solid #e8b84a;
}

:root[data-theme="dark"] .footer {
  background: #090c0b;
  border-top-color: #e8b84a;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background: var(--hero-panel);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .audit-board {
    width: min(100%, 620px);
  }

  .deliverable-grid article:nth-child(2) {
    border-right: 0;
  }

  .deliverable-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .nav-links {
    inset: 64px 10px auto;
    border-radius: 2px;
  }

  .hero::before {
    background-size: 50% 100%;
  }

  .hero-inner {
    width: min(100% - 28px, 720px);
    padding: 62px 0 56px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.45rem;
    line-height: 0.99;
    overflow-wrap: normal;
  }

  .platform-line {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }

  .audit-board::before {
    display: none;
  }

  .split-section {
    gap: 46px;
  }

  .choice-list article {
    grid-template-columns: 30px 1fr;
  }

  .choice-list p {
    grid-column: 2;
  }

  .feature-card {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .feature-card > a {
    display: none;
  }

  .section,
  .canvas-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .deliverable-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .deliverable-grid article:last-child {
    border-bottom: 0;
  }

  .package-preview .price-card,
  .pricing-grid > .price-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-preview .price-card:last-child,
  .pricing-grid > .price-card:last-child {
    border-bottom: 0;
  }

  .page-hero h1,
  .packages-hero h1,
  .pricing-hero h1,
  .tools-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.28rem;
  }

  .page-hero h1,
  .packages-hero h1,
  .pricing-hero h1,
  .tools-hero h1 {
    font-size: 2.65rem;
  }
}

.home-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
  margin-bottom: 38px;
}

.home-services-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.home-services-head > div:last-child {
  padding-bottom: 4px;
}

.home-services-head > div:last-child p {
  max-width: 520px;
  margin: 0;
  font-size: 1.02rem;
}

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

.home-service-card {
  --service-accent: var(--green);
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
  min-height: 270px;
  padding: 26px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--service-accent);
  border-radius: 4px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-service-card-wide {
  grid-column: span 3;
  min-height: 290px;
}

.home-service-card:hover {
  border-color: var(--service-accent);
  box-shadow: 0 16px 34px rgba(21, 24, 23, 0.1);
  transform: translateY(-3px);
}

.home-service-card:focus-visible {
  outline: 3px solid var(--service-accent);
  outline-offset: 3px;
}

:root[data-theme="dark"] .home-service-card:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.home-service-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
}

.home-service-card-meta span {
  color: var(--service-accent);
  font-weight: 700;
  text-transform: uppercase;
}

.home-service-card-meta strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: right;
}

.home-service-card h3 {
  margin: 0 0 10px;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.home-service-card p {
  max-width: 540px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 650;
}

.home-service-card-link i {
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--service-accent);
  border-right: 2px solid var(--service-accent);
  transform: translateX(-3px) rotate(45deg);
  transition: transform 160ms ease;
}

.home-service-card:hover .home-service-card-link i {
  transform: translateX(0) rotate(45deg);
}

.service-accent-teal {
  --service-accent: #0b7562;
}

.service-accent-gold {
  --service-accent: #8b5d0c;
}

.service-accent-blue {
  --service-accent: #315f96;
}

.service-accent-coral {
  --service-accent: #a54436;
}

.service-accent-green {
  --service-accent: #4d7137;
}

:root[data-theme="dark"] .service-accent-teal {
  --service-accent: #78c8b4;
}

:root[data-theme="dark"] .service-accent-gold {
  --service-accent: #e8b84a;
}

:root[data-theme="dark"] .service-accent-blue {
  --service-accent: #77a8df;
}

:root[data-theme="dark"] .service-accent-coral {
  --service-accent: #df705f;
}

:root[data-theme="dark"] .service-accent-green {
  --service-accent: #a9c68f;
}

@media (max-width: 980px) {
  .home-services-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .home-service-card,
  .home-service-card-wide {
    grid-column: span 1;
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .home-services-head h2 {
    font-size: 2.45rem;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-service-card-wide {
    min-height: 0;
    padding: 22px;
  }
}

.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
  margin-bottom: 38px;
}

.home-section-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 3.8vw, 3.65rem);
  line-height: 1.03;
}

.home-section-intro > div:last-child {
  padding-bottom: 4px;
}

.home-section-intro > div:last-child p {
  max-width: 540px;
  margin: 0;
  font-size: 1rem;
}

.home-tools-intro {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 34px;
}

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

.home-output-grid .credit-output-card {
  --output-accent: var(--green);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 300px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--output-accent);
  border-radius: 4px;
}

.home-output-grid .credit-output-card:nth-child(n) {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credit-output-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.home-output-grid .credit-output-meta span {
  color: var(--output-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.credit-output-meta small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: right;
}

.home-output-grid .credit-output-card h3 {
  max-width: 440px;
  margin-bottom: 10px;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.home-output-grid .credit-output-card > p {
  max-width: 540px;
}

.home-output-grid .credit-output-card ul {
  align-self: end;
  margin-top: 26px;
}

.output-accent-teal {
  --output-accent: #0b7562;
}

.output-accent-gold {
  --output-accent: #8b5d0c;
}

.output-accent-blue {
  --output-accent: #315f96;
}

.output-accent-coral {
  --output-accent: #a54436;
}

:root[data-theme="dark"] .output-accent-teal {
  --output-accent: #78c8b4;
}

:root[data-theme="dark"] .output-accent-gold {
  --output-accent: #e8b84a;
}

:root[data-theme="dark"] .output-accent-blue {
  --output-accent: #77a8df;
}

:root[data-theme="dark"] .output-accent-coral {
  --output-accent: #df705f;
}

.package-preview .pricing-grid {
  gap: 14px;
  border: 0;
}

.package-preview .home-price-card {
  --price-accent: var(--green);
  border: 1px solid var(--line);
  border-top: 4px solid var(--price-accent);
  border-radius: 4px;
  background: var(--surface);
}

.package-preview .home-price-card.featured {
  color: #f5f6f2;
  background: #0b4138;
  border-color: #0b4138;
  border-top-color: var(--price-accent);
}

.price-accent-teal {
  --price-accent: #0b7562;
}

.price-accent-gold {
  --price-accent: #e8b84a;
}

.price-accent-blue {
  --price-accent: #315f96;
}

:root[data-theme="dark"] .price-accent-teal {
  --price-accent: #78c8b4;
}

:root[data-theme="dark"] .price-accent-blue {
  --price-accent: #77a8df;
}

.home-principle-section .home-section-intro h2 {
  max-width: 820px;
}

.home-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 44px;
}

.home-signal-item {
  --signal-accent: var(--green);
  padding: 22px 0 8px;
  border-top: 4px solid var(--signal-accent);
}

.home-signal-item > span {
  display: block;
  margin-bottom: 30px;
  color: var(--signal-accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-signal-item h3 {
  margin-bottom: 9px;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.3rem;
}

.home-signal-item p {
  max-width: 520px;
  margin: 0;
}

.signal-accent-teal {
  --signal-accent: #0b7562;
}

.signal-accent-gold {
  --signal-accent: #8b5d0c;
}

.signal-accent-coral {
  --signal-accent: #a54436;
}

.signal-accent-blue {
  --signal-accent: #315f96;
}

:root[data-theme="dark"] .signal-accent-teal {
  --signal-accent: #78c8b4;
}

:root[data-theme="dark"] .signal-accent-gold {
  --signal-accent: #e8b84a;
}

:root[data-theme="dark"] .signal-accent-coral {
  --signal-accent: #df705f;
}

:root[data-theme="dark"] .signal-accent-blue {
  --signal-accent: #77a8df;
}

.home-faq-head {
  margin-bottom: 30px;
}

@media (max-width: 980px) {
  .home-section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .package-preview .pricing-grid {
    grid-template-columns: 1fr;
  }

  .package-preview .home-price-card {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .home-section-intro h2 {
    font-size: 2.35rem;
  }

  .home-output-grid,
  .home-signal-grid {
    grid-template-columns: 1fr;
  }

  .home-output-grid .credit-output-card {
    min-height: 0;
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .section.canvas-section {
    width: 100%;
    padding: 56px 20px 64px;
  }

  .canvas-section .home-tools-intro,
  .canvas-section .tool-shell {
    width: 100%;
  }

  .home-tools-intro {
    gap: 18px;
    margin-bottom: 28px;
  }

  .home-tools-intro h2 {
    font-size: 2.05rem;
    line-height: 1.05;
  }

  .tool-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 8px;
  }

  .tool-sidebar button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 8px 6px;
    font-size: 0.74rem;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .tool-header h3 {
    font-size: 1.65rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .demo-cursor {
    display: none;
  }
}

@media (max-width: 320px) {
  .section.canvas-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-tools-intro h2 {
    font-size: 1.9rem;
  }

  .tool-sidebar button {
    font-size: 0.7rem;
  }
}
