:root {
  --command-navy: #172331;
  --console-navy: #203340;
  --brief-paper: #f5f7f2;
  --panel-paper: #ffffff;
  --helmet-olive: #6f7d32;
  --ready-lime: #b9d94a;
  --telemetry-cyan: #49b6d6;
  --review-amber: #f2b84b;
  --failure-red: #d9534f;
  --steel-line: #5f7180;
  --ink-primary: #131e2c;
  --ink-secondary: #536473;
  --ink-tertiary: #7b8993;
  --edge-soft: rgba(95, 113, 128, 0.2);
  --edge-dark: rgba(245, 247, 242, 0.14);
  --lift: 0 1px 2px rgba(19, 30, 44, 0.08);
  --object-shadow: 0 22px 55px rgba(19, 30, 44, 0.2), 0 5px 14px rgba(19, 30, 44, 0.1);
  --object-shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.34), 0 7px 18px rgba(0, 0, 0, 0.24);
  --cta-glow: 0 0 0 1px rgba(185, 217, 74, 0.34), 0 0 22px rgba(185, 217, 74, 0.46), 0 12px 30px rgba(185, 217, 74, 0.2);
  --radius-panel: 8px;
  --radius-control: 6px;
  --section-x: clamp(24px, 5vw, 72px);
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--command-navy);
  color: var(--ink-primary);
  font-family: var(--font-system);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  overflow-x: clip;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

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

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

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

p {
  color: var(--ink-secondary);
  font-size: 17px;
  line-height: 1.66;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 104px;
  padding: 18px var(--section-x);
  border-bottom: 1px solid rgba(191, 223, 232, 0.18);
  background: rgba(10, 16, 18, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--brief-paper);
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 68px;
  max-width: min(360px, 34vw);
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(0.78) brightness(1.08) contrast(0.96);
}

.brand span span {
  color: var(--helmet-olive);
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-control);
  background: var(--command-navy);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 15px;
  height: 7px;
  border-top: 5px solid var(--ready-lime);
  border-right: 5px solid var(--ready-lime);
  transform: rotate(45deg);
}

.brand-mark::before {
  top: 8px;
}

.brand-mark::after {
  top: 17px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(245, 247, 242, 0.78);
  font-size: 15px;
  font-weight: 650;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

nav a:hover {
  color: var(--brief-paper);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius-control);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.header-cta,
.button-primary {
  color: var(--command-navy);
  background: var(--ready-lime);
  box-shadow: var(--cta-glow);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: #c5e84f;
  box-shadow: 0 0 0 1px rgba(185, 217, 74, 0.46), 0 0 34px rgba(185, 217, 74, 0.62), 0 16px 34px rgba(185, 217, 74, 0.25);
}

.button-secondary {
  color: var(--brief-paper);
  border: 1px solid rgba(245, 247, 242, 0.38);
}

.section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(73, 182, 214, 0.13), transparent 32%),
    radial-gradient(circle at 22% 82%, rgba(111, 125, 50, 0.15), transparent 28%),
    linear-gradient(135deg, #101b28, var(--command-navy) 52%, var(--console-navy));
  color: var(--brief-paper);
}

.section-light {
  background: var(--brief-paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 0;
  min-height: 768px;
  padding: 90px var(--section-x) 104px;
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96) 0%, rgba(8, 18, 32, 0.9) 38%, rgba(8, 18, 32, 0.58) 64%, rgba(8, 18, 32, 0.3) 100%),
    linear-gradient(180deg, rgba(23, 35, 49, 0.18), rgba(23, 35, 49, 0.58)),
    image-set(
      url("../images/hero-command-centre.webp") type("image/webp"),
      url("../images/hero-command-centre.png") type("image/png")
    ) center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: none;
  transform: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 48%, rgba(73, 182, 214, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(23, 35, 49, 0.02), rgba(23, 35, 49, 0.52));
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 0;
  justify-self: center;
  width: min(640px, calc(100% - 56px));
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--ready-lime);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--helmet-olive);
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--brief-paper);
  font-family: var(--font-display);
  font-size: clamp(44px, 4.05vw, 70px);
  line-height: 1.02;
  font-weight: 750;
}

h1 span {
  display: inline;
  white-space: normal;
}

h1 span + span::before {
  content: " ";
}

h2 {
  max-width: 870px;
  margin-bottom: 0;
  color: var(--ink-primary);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.08;
  font-weight: 720;
}

h3 {
  margin-bottom: 14px;
  color: var(--ink-primary);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
}

.section-dark h2,
.section-dark h3 {
  color: var(--brief-paper);
}

.hero-lede {
  max-width: 680px;
  margin-right: 0;
  margin-left: 0;
  color: rgba(245, 247, 242, 0.8);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.48;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 36px;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(185, 217, 74, 0.34);
  border-radius: 999px;
  background: rgba(245, 247, 242, 0.08);
  color: rgba(245, 247, 242, 0.84);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(1240px, 94vw);
  min-width: 0;
  max-width: none;
  margin-left: clamp(-92px, -5vw, -36px);
  border: 1px solid rgba(245, 247, 242, 0.16);
  border-radius: 18px;
  background: rgba(245, 247, 242, 0.08);
  box-shadow: var(--object-shadow-dark);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 360px;
  padding: 32px;
  border: 1px dashed rgba(73, 182, 214, 0.5);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 18% 22%, rgba(73, 182, 214, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(245, 247, 242, 0.1), rgba(245, 247, 242, 0.045));
  color: var(--brief-paper);
  text-align: center;
  overflow: hidden;
}

.image-slot:has(img) {
  padding: 0;
  border-style: solid;
  background: #0f1a27;
  box-shadow: var(--object-shadow);
}

.image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.placeholder-topline {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.placeholder-topline b {
  color: var(--ready-lime);
}

.placeholder-topline em {
  color: rgba(245, 247, 242, 0.52);
  font-style: normal;
}

.image-slot span {
  display: block;
  max-width: 430px;
  color: currentColor;
  font-size: 24px;
  font-weight: 740;
}

.image-slot small {
  display: block;
  max-width: 470px;
  margin-top: 12px;
  color: rgba(245, 247, 242, 0.64);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.section-light .image-slot {
  border-color: rgba(95, 113, 128, 0.34);
  background:
    radial-gradient(circle at 18% 18%, rgba(111, 125, 50, 0.08), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef1eb);
  color: var(--command-navy);
  box-shadow: var(--lift);
}

.section-light .image-slot small {
  color: var(--ink-secondary);
}

.section-light .placeholder-topline em {
  color: var(--ink-tertiary);
}

.hero-slot {
  min-height: 520px;
}

.tall-slot {
  min-height: 560px;
}

.wide-slot {
  min-height: 300px;
  margin-bottom: 32px;
}

.workflow-slot {
  min-height: 0;
  height: clamp(360px, 42vw, 520px);
  margin-bottom: 32px;
}

.workflow-slot img {
  object-position: center 46%;
}

.cta-slot {
  min-height: 340px;
  box-shadow: var(--object-shadow-dark);
}

.proof-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  margin: -64px auto -72px;
}

.proof-cards article {
  min-height: 184px;
  padding: 32px;
  border: 1px solid var(--edge-soft);
  border-radius: var(--radius-panel);
  background: var(--panel-paper);
  box-shadow: var(--object-shadow);
}

.card-icon {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border: 1px solid rgba(73, 182, 214, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(73, 182, 214, 0.18), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(185, 217, 74, 0.5), transparent 16%),
    linear-gradient(180deg, #203340, #101b28);
  color: var(--brief-paper);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 242, 0.14),
    inset 0 -18px 28px rgba(2, 10, 18, 0.24),
    0 15px 34px rgba(19, 30, 44, 0.22);
  overflow: hidden;
}

.card-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(245, 247, 242, 0.08);
  border-radius: 10px;
  background: rgba(245, 247, 242, 0.04);
}

.card-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ready-lime);
  box-shadow: 0 0 14px rgba(185, 217, 74, 0.72);
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon-queue,
.card-icon-sales,
.card-icon-focus,
.card-icon-research {
  border-color: rgba(73, 182, 214, 0.34);
  background:
    linear-gradient(135deg, rgba(73, 182, 214, 0.26), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(73, 182, 214, 0.66), transparent 16%),
    linear-gradient(180deg, #203746, #101b28);
}

.card-icon-queue::after,
.card-icon-sales::after,
.card-icon-focus::after,
.card-icon-research::after {
  background: var(--telemetry-cyan);
  box-shadow: 0 0 14px rgba(73, 182, 214, 0.78);
}

.card-icon-review,
.card-icon-clock,
.card-icon-follow {
  border-color: rgba(242, 184, 75, 0.36);
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.2), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(242, 184, 75, 0.64), transparent 16%),
    linear-gradient(180deg, #2b3a3f, #101b28);
}

.card-icon-review::after,
.card-icon-clock::after,
.card-icon-follow::after {
  background: var(--review-amber);
  box-shadow: 0 0 14px rgba(242, 184, 75, 0.72);
}

.proof-cards h2 {
  margin-bottom: 16px;
  color: var(--ink-primary);
  font-size: 24px;
  line-height: 1.16;
}

.proof-cards p {
  margin-bottom: 0;
}

.chat-preview-band {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 82% 14%, rgba(73, 182, 214, 0.16), transparent 32%),
    radial-gradient(circle at 12% 92%, rgba(185, 217, 74, 0.12), transparent 34%),
    linear-gradient(135deg, #101b28, var(--command-navy) 54%, var(--console-navy));
}

.chat-section-copy {
  width: min(1480px, calc(100% - (var(--section-x) * 2)));
  margin: 0 auto 34px;
}

.chat-section-copy .eyebrow.dark {
  color: var(--ready-lime);
}

.chat-section-copy h2 {
  max-width: 860px;
  color: var(--brief-paper);
}

.chat-preview {
  width: min(1480px, calc(100% - (var(--section-x) * 2)));
  min-height: 0;
  margin: 0 auto;
  border: 1px solid rgba(245, 247, 242, 0.16);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 86% 12%, rgba(73, 182, 214, 0.18), transparent 34%),
    radial-gradient(circle at 8% 96%, rgba(185, 217, 74, 0.12), transparent 34%),
    linear-gradient(135deg, #152433, var(--command-navy) 58%, #253a47);
  box-shadow: 0 34px 88px rgba(19, 30, 44, 0.28), 0 8px 20px rgba(19, 30, 44, 0.14);
  color: var(--brief-paper);
  overflow: hidden;
}

.chat-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px;
  border-bottom: 1px solid var(--edge-dark);
}

.chat-preview-header span,
.chat-preview-header b {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-preview-header span {
  display: block;
  margin-bottom: 7px;
  color: var(--ready-lime);
}

.chat-preview-header strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 720;
}

.chat-preview-header b {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(245, 247, 242, 0.18);
  border-radius: 999px;
  color: rgba(245, 247, 242, 0.62);
}

.chat-preview-body {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  max-height: 420px;
  margin: 34px 40px 0;
  padding: 34px;
  border: 1px solid rgba(245, 247, 242, 0.12);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(180deg, rgba(245, 247, 242, 0.96), rgba(235, 240, 230, 0.92));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.chat-bubble {
  max-width: 68%;
  padding: 18px 20px;
  border-radius: var(--radius-control);
  font-size: 17px;
  line-height: 1.5;
  box-shadow: var(--lift);
}

.chat-bubble.assistant {
  justify-self: start;
  border: 1px solid rgba(95, 113, 128, 0.18);
  background: var(--panel-paper);
  color: var(--ink-primary);
}

.chat-bubble.user {
  justify-self: end;
  background: var(--ready-lime);
  color: var(--command-navy);
  font-weight: 650;
}

.chat-starters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 40px 4px;
}

.chat-starters button {
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(73, 182, 214, 0.36);
  border-radius: 999px;
  background: rgba(245, 247, 242, 0.1);
  color: rgba(245, 247, 242, 0.9);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chat-starters button:hover {
  border-color: rgba(185, 217, 74, 0.68);
  background: rgba(185, 217, 74, 0.14);
  color: var(--brief-paper);
  transform: translateY(-1px);
}

.chat-preview-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 28px 40px 26px;
}

.chat-preview-input textarea {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 20px 22px;
  border: 1px solid rgba(245, 247, 242, 0.72);
  border-radius: var(--radius-control);
  background: rgba(252, 253, 248, 0.94);
  color: var(--command-navy);
  resize: none;
  outline: 0;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  overflow-y: auto;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.chat-preview-input textarea::placeholder {
  color: rgba(29, 43, 64, 0.58);
}

.chat-preview-input textarea:placeholder-shown {
  background-image: linear-gradient(
    110deg,
    rgba(252, 253, 248, 0.96) 0%,
    rgba(252, 253, 248, 0.96) 42%,
    rgba(185, 217, 74, 0.12) 49%,
    rgba(73, 182, 214, 0.1) 52%,
    rgba(252, 253, 248, 0.96) 60%,
    rgba(252, 253, 248, 0.96) 100%
  );
  background-size: 180% 100%;
  animation: chat-input-shimmer 7s ease-in-out infinite;
}

.chat-preview-input textarea:focus {
  border-color: rgba(73, 182, 214, 0.66);
  background-color: #fffef8;
  background-image: none;
  box-shadow: 0 0 0 3px rgba(73, 182, 214, 0.18), 0 16px 34px rgba(2, 10, 18, 0.18);
  color: var(--command-navy);
  animation: none;
}

.chat-preview-input textarea:focus::placeholder {
  color: transparent;
}

@keyframes chat-input-shimmer {
  0% {
    background-position: 90% 0;
  }

  55%,
  100% {
    background-position: -90% 0;
  }
}

.chat-preview-input button {
  min-width: 144px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--ready-lime);
  color: var(--command-navy);
  box-shadow: var(--cta-glow);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  cursor: pointer;
}

.chat-preview-input button:disabled,
.chat-preview-input textarea:disabled {
  cursor: wait;
  opacity: 0.68;
}

.chat-note {
  margin: -8px 40px 34px;
  color: rgba(245, 247, 242, 0.48);
  font-size: 13px;
  line-height: 1.45;
}

.split,
.copy-band,
.improvements,
.services,
.features,
.workflow,
.before-after,
.final-cta,
.stats,
.agent-os-section,
.faq {
  padding: 88px var(--section-x);
}

.agent-os-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
  background: var(--panel-paper);
}

.agent-os-copy {
  max-width: 820px;
}

.agent-os-copy p {
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.section-copy {
  max-width: 730px;
}

.pain-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.pain-list p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 16px 22px 16px 18px;
  border-left: 4px solid var(--helmet-olive);
  border-radius: var(--radius-control);
  background: var(--panel-paper);
  color: #244450;
  font-size: 19px;
  font-weight: 700;
  box-shadow: var(--lift);
}

.pain-list .card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 242, 0.12),
    0 11px 24px rgba(19, 30, 44, 0.18);
}

.pain-list .card-icon svg {
  width: 22px;
  height: 22px;
}

.copy-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 6vw, 88px);
  background: var(--panel-paper);
}

.copy-visual {
  aspect-ratio: 16 / 10;
  min-height: 0;
  margin-top: clamp(42px, 5vw, 72px);
  border-color: rgba(23, 35, 49, 0.18);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(19, 30, 44, 0.18), 0 6px 18px rgba(19, 30, 44, 0.1);
}

.copy-visual img {
  object-position: center;
}

.long-copy {
  max-width: 860px;
}

.long-copy p {
  font-size: 18px;
  line-height: 1.74;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.stats .section-heading h2,
.services .section-heading h2,
.workflow .section-heading h2 {
  color: var(--brief-paper);
}

.stat-grid,
.service-grid,
.feature-grid,
.step-grid,
.compare-grid {
  display: grid;
  gap: 24px;
}

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

.stat-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--edge-dark);
  border-radius: var(--radius-panel);
  background: rgba(245, 247, 242, 0.07);
}

.stat-grid .card-icon,
.service-grid .card-icon {
  color: var(--brief-paper);
  background:
    linear-gradient(135deg, rgba(73, 182, 214, 0.18), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(185, 217, 74, 0.5), transparent 16%),
    linear-gradient(180deg, #203340, #101b28);
  border-color: rgba(73, 182, 214, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 242, 0.14),
    inset 0 -18px 28px rgba(2, 10, 18, 0.24),
    0 15px 34px rgba(2, 10, 18, 0.24);
}

.stat-grid strong {
  display: block;
  margin-bottom: 22px;
  color: var(--ready-lime);
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.stat-grid p,
.service-grid p,
.step-grid p,
.final-cta p {
  color: rgba(245, 247, 242, 0.76);
}

.improvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--edge-soft);
  border-left: 1px solid var(--edge-soft);
  background: var(--panel-paper);
}

.improvement-grid article {
  min-height: 248px;
  padding: 32px;
  border-right: 1px solid var(--edge-soft);
  border-bottom: 1px solid var(--edge-soft);
}

.improvement-grid .card-icon {
  margin-bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.improvement-grid article > span:not(.card-icon) {
  display: block;
  margin-bottom: 18px;
  color: var(--helmet-olive);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

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

.service-grid article {
  min-height: 285px;
  padding: 32px;
  border: 1px solid var(--edge-dark);
  border-radius: var(--radius-panel);
  background: var(--brief-paper);
}

.service-grid .card-icon {
  margin-bottom: 26px;
}

.service-grid h3 {
  color: var(--command-navy);
}

.service-grid p {
  color: var(--ink-secondary);
}

.feature-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 0.68fr);
  gap: 28px;
  align-items: stretch;
}

.feature-image-slot {
  min-height: 520px;
  box-shadow: var(--object-shadow);
}

.section-light .feature-image-slot {
  box-shadow: var(--object-shadow);
}

.section-dark .cta-slot {
  box-shadow: var(--object-shadow-dark);
}

.feature-grid article,
.compare-grid article {
  padding: 32px;
  border: 1px solid var(--edge-soft);
  border-radius: var(--radius-panel);
  background: var(--panel-paper);
}

.feature-grid article {
  min-height: auto;
  padding: 24px;
  border-top-color: var(--helmet-olive);
}

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

.step-grid article {
  min-height: 270px;
  padding: 32px;
  border: 1px solid var(--edge-dark);
  border-radius: var(--radius-panel);
  background: rgba(245, 247, 242, 0.07);
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: var(--radius-control);
  background: var(--ready-lime);
  color: var(--command-navy);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 750;
}

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

.compare-grid .after {
  border-color: rgba(185, 217, 74, 0.78);
}

.compare-grid ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.compare-grid li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-secondary);
  line-height: 1.62;
}

.compare-grid li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel-line);
}

.compare-grid .after li::before {
  background: var(--ready-lime);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.faq {
  background: var(--panel-paper);
}

[id] {
  scroll-margin-top: 120px;
}

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

.faq-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--edge-soft);
  border-radius: var(--radius-panel);
  background: var(--brief-paper);
}

.faq-grid p {
  margin-bottom: 0;
}

.final-cta h2 {
  color: var(--brief-paper);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--section-x);
  border-top: 1px solid var(--edge-soft);
  background: var(--brief-paper);
}

footer p {
  max-width: 560px;
  margin: 0;
}

.footer-logo {
  height: 56px;
  max-width: min(300px, 72vw);
}

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

  nav {
    display: none;
  }

  .split,
  .copy-band,
  .feature-layout,
  .final-cta,
  .agent-os-section {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 980px);
    margin-left: 0;
    transform: none;
  }

  .hero-copy {
    justify-self: center;
    margin-left: 0;
    width: min(780px, calc(100vw - 48px));
    text-align: center;
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .actions,
  .proof-chips {
    justify-content: center;
  }

  .proof-cards,
  .stat-grid,
  .service-grid,
  .feature-grid,
  .step-grid,
  .compare-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-cta {
    justify-self: end;
    width: auto;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
    white-space: nowrap;
  }

  .brand-logo {
    height: 48px;
    max-width: min(178px, 44vw);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-copy {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  h1 span {
    display: block;
    white-space: normal;
  }

  h1 span + span::before {
    content: "";
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .actions {
    justify-content: center;
  }

  h1 {
    font-size: clamp(36px, 12vw, 46px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .proof-cards {
    margin: 0 auto -40px;
    padding-top: 24px;
  }

  .chat-preview-band {
    padding-top: 92px;
    padding-bottom: 58px;
  }

  .chat-section-copy,
  .chat-preview {
    width: min(100% - 36px, 1480px);
  }

  .chat-preview {
    min-height: 0;
  }

  .chat-preview-header,
  .chat-preview-input {
    grid-template-columns: 1fr;
  }

  .chat-preview-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .chat-preview-body {
    min-height: 280px;
    margin: 20px 18px 0;
    padding: 18px;
  }

  .chat-bubble {
    max-width: 100%;
    font-size: 15px;
  }

  .chat-starters {
    padding-right: 18px;
    padding-left: 18px;
  }

  .chat-starters button {
    flex: 1 1 auto;
  }

  .chat-preview-input {
    padding-right: 18px;
    padding-left: 18px;
  }

  .chat-preview-input button {
    min-height: 58px;
  }

  .chat-note {
    margin-right: 18px;
    margin-left: 18px;
  }

  .split,
  .copy-band,
  .improvements,
  .services,
  .features,
  .workflow,
  .before-after,
  .final-cta,
  .stats,
  .agent-os-section,
  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-visual {
    justify-self: center;
    width: 100%;
    max-width: 720px;
    margin-left: 0;
    transform: none;
  }

  .hero-slot,
  .tall-slot,
  .cta-slot {
    min-height: 360px;
  }

  .image-slot {
    padding: 24px;
  }

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

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

  [id] {
    scroll-margin-top: 86px;
  }
}

/* TaskForceAI donation page */
:root {
      --bg: #0a0a0a;
      --panel: #101315;
      --panel-2: #15191c;
      --ink: #ffffff;
      --muted: #a7b0b7;
      --soft: #d8dee3;
      --line: rgba(255, 255, 255, 0.12);
      --green: #43f1a8;
      --green-dim: rgba(67, 241, 168, 0.14);
      --amber: #ffb34f;
      --amber-2: #f59a2f;
      --red: #ff6b5f;
      --blue: #76b7ff;
      --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 15% 0%, rgba(67, 241, 168, 0.08), transparent 28rem),
        linear-gradient(180deg, #0a0a0a 0%, #0b0d0f 48%, #080808 100%);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    a {
      color: inherit;
    }

    .tfp-site-shell {
      min-height: 100vh;
      overflow: hidden;
    }

    .tfp-nav {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(10, 10, 10, 0.86);
      backdrop-filter: blur(16px);
    }

    .tfp-nav-inner {
      width: min(1180px, calc(100% - 32px));
      min-height: 68px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .tfp-brand {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      font-weight: 850;
    }

    .tfp-brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(67, 241, 168, 0.45);
      background: rgba(67, 241, 168, 0.1);
      color: var(--green);
      font-weight: 950;
    }

    .tfp-brand small {
      display: block;
      margin-top: 1px;
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 650;
    }

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

    .tfp-nav-links a {
      text-decoration: none;
    }

    .tfp-mini-cta {
      min-height: 40px;
      padding: 0 15px;
      border-radius: 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #04100b;
      font-weight: 900;
      text-decoration: none;
      white-space: nowrap;
    }

    .tfp-hero {
      position: relative;
      min-height: calc(100vh - 68px);
      display: grid;
      align-items: end;
      border-bottom: 1px solid var(--line);
    }

    .tfp-hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .tfp-hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.54;
      filter: saturate(0.9) contrast(1.02);
    }

    .tfp-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.86) 42%, rgba(10, 10, 10, 0.36) 76%),
        linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.26) 58%);
    }

    .tfp-hero-inner {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 74px 0 54px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 420px;
      gap: 48px;
      align-items: end;
    }

    .tfp-status-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .tfp-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      color: var(--soft);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .tfp-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 16px rgba(67, 241, 168, 0.9);
    }

    .tfp-dot-red {
      background: var(--red);
      box-shadow: 0 0 16px rgba(255, 107, 95, 0.82);
    }

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

    h1 {
      max-width: 880px;
      margin-bottom: 20px;
      font-size: clamp(2.65rem, 7vw, 5.9rem);
      line-height: 0.92;
      letter-spacing: 0;
    }

    .tfp-hero-copy {
      max-width: 760px;
      margin-bottom: 28px;
      color: var(--soft);
      font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    }

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

    .tfp-btn {
      min-height: 54px;
      padding: 0 22px;
      border: 0;
      border-radius: 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-weight: 950;
      text-decoration: none;
      cursor: pointer;
      transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
    }

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

    .tfp-btn-primary {
      background: var(--green);
      color: #04100b;
      box-shadow: 0 18px 48px rgba(67, 241, 168, 0.22);
    }

    .tfp-btn-primary:hover {
      background: #63ffc0;
    }

    .tfp-btn-secondary {
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.07);
      color: var(--ink);
    }

    .tfp-donation-module {
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(16, 19, 21, 0.94);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .tfp-module-top {
      padding: 22px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    }

    .tfp-module-label {
      margin-bottom: 8px;
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tfp-module-top h2 {
      margin-bottom: 8px;
      font-size: 1.45rem;
      line-height: 1.15;
    }

    .tfp-module-top p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .tfp-amounts {
      padding: 18px 22px 12px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .tfp-amount {
      min-height: 72px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 7px;
      display: grid;
      align-content: center;
      gap: 4px;
      background: #0d1012;
      text-decoration: none;
    }

    .tfp-amount strong {
      color: var(--ink);
      font-size: 1.25rem;
      line-height: 1;
    }

    .tfp-amount span {
      color: var(--muted);
      font-size: 0.79rem;
    }

    .tfp-amount:hover,
    .tfp-amount:focus {
      outline: 2px solid rgba(67, 241, 168, 0.25);
      border-color: rgba(67, 241, 168, 0.7);
    }

    .tfp-module-donate {
      display: flex;
      min-height: 56px;
      margin: 10px 22px 14px;
      border-radius: 7px;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #04100b;
      font-weight: 950;
      text-decoration: none;
    }

    .tfp-secure-note {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .tfp-secure-note strong {
      color: var(--soft);
    }

    section {
      padding: 84px 0;
      border-bottom: 1px solid var(--line);
    }

    .tfp-wrap {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .tfp-section-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 56px;
      align-items: start;
    }

    .tfp-eyebrow {
      margin-bottom: 12px;
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 0;
      font-size: clamp(2rem, 4.6vw, 4.25rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .tfp-text-stack {
      display: grid;
      gap: 18px;
      color: var(--soft);
      font-size: 1.07rem;
    }

    .tfp-text-stack p {
      margin-bottom: 0;
    }

    .tfp-quote {
      margin-top: 26px;
      padding: 20px;
      border-left: 4px solid var(--amber);
      background: rgba(255, 179, 79, 0.08);
      color: var(--soft);
      font-size: 1rem;
    }

    .tfp-quote strong {
      color: var(--ink);
    }

    .tfp-protocol {
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #0b0d0f;
      background-size: 38px 38px;
    }

    .tfp-protocol-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .tfp-step,
    .tfp-need,
    .tfp-proof,
    .tfp-faq-item {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(16, 19, 21, 0.86);
    }

    .tfp-step {
      min-height: 220px;
      padding: 22px;
    }

    .tfp-step-num {
      width: 40px;
      height: 40px;
      margin-bottom: 28px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: var(--green-dim);
      color: var(--green);
      font-weight: 950;
    }

    .tfp-step h3,
    .tfp-need h3 {
      margin-bottom: 10px;
      font-size: 1.18rem;
    }

    .tfp-step p,
    .tfp-need p,
    .tfp-proof p,
    .tfp-faq-item p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .tfp-needs-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .tfp-need {
      min-height: 190px;
      padding: 22px;
    }

    .tfp-need-tag {
      display: inline-flex;
      min-height: 28px;
      margin-bottom: 30px;
      padding: 0 9px;
      border-radius: 999px;
      align-items: center;
      background: rgba(255, 179, 79, 0.12);
      color: var(--amber);
      font-size: 0.72rem;
      font-weight: 950;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .tfp-proof-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .tfp-proof {
      min-height: 164px;
      padding: 22px;
    }

    .tfp-proof strong {
      display: block;
      margin-bottom: 10px;
      color: var(--ink);
      font-size: 1.08rem;
    }

    .tfp-donate-band {
      position: relative;
      background: linear-gradient(135deg, rgba(67, 241, 168, 0.12), rgba(118, 183, 255, 0.06) 40%, rgba(255, 179, 79, 0.09));
    }

    .tfp-donate-band-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 48px;
      align-items: center;
    }

    .tfp-donate-band h2 {
      max-width: 780px;
    }

    .tfp-donate-band p {
      max-width: 720px;
      margin: 20px 0 0;
      color: var(--soft);
      font-size: 1.08rem;
    }

    .tfp-faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .tfp-faq-item {
      padding: 22px;
    }

    .tfp-faq-item h3 {
      margin-bottom: 10px;
      font-size: 1.08rem;
    }

    .tfp-fine-print {
      padding: 28px 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .tfp-fine-print-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (max-width: 960px) {
      .tfp-nav-links a:not(.tfp-mini-cta) {
        display: none;
      }

      .tfp-hero-inner,
      .tfp-section-grid,
      .tfp-donate-band-inner {
        grid-template-columns: 1fr;
      }

      .tfp-hero-inner {
        padding-top: 86px;
      }

      .tfp-donation-module {
        max-width: 560px;
      }

      .tfp-protocol-row,
      .tfp-needs-grid,
      .tfp-proof-grid {
        grid-template-columns: 1fr;
      }

      .tfp-faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .tfp-nav-inner,
      .tfp-hero-inner,
      .tfp-wrap,
      .tfp-fine-print-inner {
        width: min(100% - 24px, 1180px);
      }

      .tfp-nav-inner {
        min-height: 62px;
      }

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

      .tfp-brand small {
        display: none;
      }

      .tfp-mini-cta {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.9rem;
      }

      .tfp-hero {
        min-height: auto;
      }

      .tfp-hero-media img {
        object-position: 65% center;
      }

      .tfp-hero-media::after {
        background:
          linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.88) 62%, rgba(10, 10, 10, 0.42) 100%);
      }

      .tfp-hero-inner {
        padding: 62px 0 36px;
      }

      .tfp-status-row {
        gap: 8px;
      }

      .tfp-pill {
        min-height: 31px;
        font-size: 0.71rem;
      }

      .tfp-hero-actions,
      .tfp-btn {
        width: 100%;
      }

      .tfp-amounts {
        grid-template-columns: 1fr;
      }

      section {
        padding: 58px 0;
      }
    }

.taskforce-content-page {
  margin: 0;
  background: radial-gradient(circle at 15% 0%, rgba(67, 241, 168, 0.08), transparent 28rem), linear-gradient(180deg, #0a0a0a 0%, #0b0d0f 48%, #080808 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.taskforce-content-page .tfp-site-shell { background: transparent; }
.taskforce-content-page .tfp-brand { flex: 0 1 auto; min-width: 0; color: var(--ink); }
.taskforce-content-page .tfp-brand > div:not(.tfp-brand-mark) { min-width: 0; }
.taskforce-content-page .tfp-brand strong { display: block; white-space: nowrap; }
.taskforce-content-page .tfp-brand small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 17rem; }
.taskforce-content-page .tfp-hero-media img { display: block; max-width: none; }
@media (max-width: 680px) {
  .taskforce-content-page .tfp-nav-inner { width: min(100% - 28px, 1180px); min-height: 64px; gap: 10px; }
  .taskforce-content-page .tfp-brand { gap: 8px; }
  .taskforce-content-page .tfp-brand-mark { width: 30px; height: 30px; border-radius: 7px; }
  .taskforce-content-page .tfp-brand small { display: none; }
  .taskforce-content-page .tfp-mini-cta { min-height: 36px; padding: 0 12px; font-size: 0.88rem; }
  .taskforce-content-page .tfp-hero { min-height: calc(100vh - 64px); align-items: center; }
  .taskforce-content-page .tfp-hero-inner { padding: 42px 0 38px; align-items: center; }
  .taskforce-content-page h1 { font-size: clamp(2.25rem, 13vw, 3.4rem); line-height: 0.96; }
  .taskforce-content-page .tfp-hero-copy { font-size: 1rem; color: #d8dee3; }
}

/* TaskForceAI donation page final text fixes */

.taskforce-content-page h1,
.taskforce-content-page h2,
.taskforce-content-page h3,
.taskforce-content-page .tfp-donation-card h3,
.taskforce-content-page .tfp-section-header h2,
.taskforce-content-page .tfp-final-copy h2 {
  color: var(--ink) !important;
}
.taskforce-content-page p,
.taskforce-content-page .tfp-donation-card p,
.taskforce-content-page .tfp-card p,
.taskforce-content-page .tfp-timeline-item p,
.taskforce-content-page .tfp-proof-note {
  color: var(--muted);
}
.taskforce-content-page .tfp-hero-copy,
.taskforce-content-page .tfp-final-copy p {
  color: var(--soft);
}

/* TaskForceAI donation page mobile brand fix */

@media (max-width: 680px) {
  .taskforce-content-page .tfp-brand small,
  .taskforce-content-page .tfp-brand div small {
    display: none !important;
  }
  .taskforce-content-page .tfp-brand {
    height: 36px;
    align-items: center;
  }
  .taskforce-content-page .tfp-brand strong {
    line-height: 1;
  }
}

/* TaskForceAI Stripe buy button embed */

.taskforce-content-page .tfp-stripe-buy-button {
  padding: 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.taskforce-content-page .tfp-stripe-buy-button stripe-buy-button {
  display: block;
  min-height: 180px;
}
@media (max-width: 680px) {
  .taskforce-content-page .tfp-stripe-buy-button {
    padding: 18px 14px;
  }
}

/* TaskForceAI Stripe buy button centering */

.taskforce-content-page .tfp-stripe-buy-button {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.taskforce-content-page .tfp-stripe-buy-button stripe-buy-button {
  display: block;
  width: min(100%, 320px);
}

/* TaskForceAI field photo gallery */

.taskforce-content-page .tfp-field-photos {
  padding: 92px 0 82px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #090a0a 0%, #0d1011 100%);
}
.taskforce-content-page .tfp-field-photos .tfp-section-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
}
.taskforce-content-page .tfp-photo-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.taskforce-content-page .tfp-photo-card {
  margin: 0;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111517;
}
.taskforce-content-page .tfp-photo-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.taskforce-content-page .tfp-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}
.taskforce-content-page .tfp-photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 12px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.82));
}
.taskforce-content-page .tfp-hero-media img {
  object-position: center center;
}
@media (max-width: 900px) {
  .taskforce-content-page .tfp-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .taskforce-content-page .tfp-field-photos {
    padding: 62px 0 56px;
  }
  .taskforce-content-page .tfp-photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .taskforce-content-page .tfp-photo-featured {
    grid-column: auto;
    grid-row: auto;
  }
  .taskforce-content-page .tfp-photo-card,
  .taskforce-content-page .tfp-photo-card img {
    min-height: 240px;
  }
}

/* TaskForceAI transparent logo header fix */

.taskforce-content-page .tfp-nav {
  background: #0a1012 !important;
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.taskforce-content-page .tfp-nav-inner {
  min-height: 58px;
}
.taskforce-content-page .tfp-brand-logo {
  width: min(210px, 44vw) !important;
  max-height: 46px !important;
  height: auto !important;
  object-fit: contain !important;
}
@media (max-width: 680px) {
  .taskforce-content-page .tfp-nav-inner {
    min-height: 56px;
  }
  .taskforce-content-page .tfp-brand {
    height: 36px;
  }
  .taskforce-content-page .tfp-brand-logo {
    width: min(168px, 48vw) !important;
    max-height: 36px !important;
  }
}

/* TaskForceAI final proportional logo sizing */

.taskforce-content-page .tfp-brand-logo {
  width: 170px !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}
@media (max-width: 680px) {
  .taskforce-content-page .tfp-brand-logo {
    width: 156px !important;
    max-height: none !important;
  }
}

/* TaskForceAI absolute final logo sizing */

.taskforce-content-page .tfp-site-shell .tfp-brand .tfp-brand-logo {
  width: 170px !important;
  height: auto !important;
  max-width: 170px !important;
  max-height: none !important;
  object-fit: contain !important;
}
@media (max-width: 680px) {
  .taskforce-content-page .tfp-site-shell .tfp-brand .tfp-brand-logo {
    width: 156px !important;
    max-width: 156px !important;
  }
}

/* TaskForceAI request counter section */

.taskforce-content-page .tfp-request-counter {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(9, 12, 13, 0.98));
}
.taskforce-content-page .tfp-request-counter-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
  gap: 18px;
  align-items: stretch;
}
.taskforce-content-page .tfp-counter-total,
.taskforce-content-page .tfp-counter-categories span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}
.taskforce-content-page .tfp-counter-total {
  min-height: 126px;
  padding: 20px 22px;
  border-radius: 8px;
  display: grid;
  align-content: center;
  gap: 4px;
}
.taskforce-content-page .tfp-counter-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.taskforce-content-page .tfp-counter-number {
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}
.taskforce-content-page .tfp-counter-caption {
  color: var(--soft);
  font-size: 1rem;
  font-weight: 800;
}
.taskforce-content-page .tfp-counter-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.taskforce-content-page .tfp-counter-categories span {
  min-height: 126px;
  border-radius: 8px;
  padding: 14px 12px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
}
@media (max-width: 980px) {
  .taskforce-content-page .tfp-request-counter-inner {
    grid-template-columns: 1fr;
  }
  .taskforce-content-page .tfp-counter-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .taskforce-content-page .tfp-request-counter-inner {
    padding: 22px 0;
    width: min(100% - 24px, 1180px);
  }
  .taskforce-content-page .tfp-counter-total {
    min-height: 108px;
    padding: 18px;
  }
  .taskforce-content-page .tfp-counter-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .taskforce-content-page .tfp-counter-categories span {
    min-height: 84px;
    padding: 12px;
    font-size: 0.88rem;
  }
}

/* TaskForceAI request counter straddle placement */

.taskforce-content-page .tfp-request-counter {
  position: relative;
  z-index: 8;
  margin-top: -76px;
  margin-bottom: -70px;
  border: 0;
  background: transparent;
  pointer-events: none;
}
.taskforce-content-page .tfp-request-counter-inner {
  position: relative;
  top: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.7fr);
  gap: 12px;
  align-items: stretch;
  pointer-events: auto;
}
.taskforce-content-page .tfp-counter-total,
.taskforce-content-page .tfp-counter-categories span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(18, 22, 24, 0.94), rgba(10, 12, 13, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}
.taskforce-content-page .tfp-counter-total {
  min-height: 126px;
  padding: 18px 20px;
  border-radius: 8px;
  display: grid;
  align-content: center;
  gap: 4px;
}
.taskforce-content-page .tfp-counter-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.taskforce-content-page .tfp-counter-number {
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}
.taskforce-content-page .tfp-counter-caption {
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 800;
}
.taskforce-content-page .tfp-counter-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.taskforce-content-page .tfp-counter-categories span {
  min-height: 126px;
  border-radius: 8px;
  padding: 13px 12px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
}
.taskforce-content-page .tfp-request-counter + .tfp-visual-section {
  padding-top: 138px;
}
.taskforce-content-page .tfp-request-counter + #protocol,
.taskforce-content-page .tfp-request-counter + .tfp-field-photos {
  padding-top: initial;
}
@media (max-width: 980px) {
  .taskforce-content-page .tfp-request-counter {
    margin-top: -60px;
    margin-bottom: -64px;
  }
  .taskforce-content-page .tfp-request-counter-inner {
    grid-template-columns: 1fr;
  }
  .taskforce-content-page .tfp-counter-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .taskforce-content-page .tfp-counter-total,
  .taskforce-content-page .tfp-counter-categories span {
    min-height: 88px;
  }
  .taskforce-content-page .tfp-request-counter + .tfp-visual-section {
    padding-top: 170px;
  }
}
@media (max-width: 560px) {
  .taskforce-content-page .tfp-request-counter {
    margin-top: -42px;
    margin-bottom: -54px;
  }
  .taskforce-content-page .tfp-request-counter-inner {
    width: min(100% - 24px, 1180px);
    gap: 10px;
  }
  .taskforce-content-page .tfp-counter-total {
    min-height: 96px;
    padding: 16px;
  }
  .taskforce-content-page .tfp-counter-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .taskforce-content-page .tfp-counter-categories span {
    min-height: 72px;
    padding: 11px;
    font-size: 0.86rem;
  }
  .taskforce-content-page .tfp-request-counter + .tfp-visual-section {
    padding-top: 198px;
  }
}

/* TaskForceAI top boundary final nudge */

.taskforce-content-page .tfp-request-counter-inner {
  top: -24px !important;
}
@media (max-width: 980px) {
  .taskforce-content-page .tfp-request-counter-inner {
    top: -18px !important;
  }
}
@media (max-width: 560px) {
  .taskforce-content-page .tfp-request-counter-inner {
    top: -12px !important;
  }
}

/* TaskForceAI Zealand founder section */

.taskforce-content-page .tfp-founder-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(67, 241, 168, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(12, 15, 16, 0.98), rgba(8, 9, 10, 0.98));
}
.taskforce-content-page .tfp-founder-grid {
  padding-top: 92px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}
.taskforce-content-page .tfp-founder-grid h2 {
  margin: 0;
  max-width: 720px;
  color: var(--ink) !important;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.taskforce-content-page .tfp-founder-copy {
  display: grid;
  gap: 18px;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.6;
}
.taskforce-content-page .tfp-founder-copy p {
  margin: 0;
  color: var(--soft);
}
.taskforce-content-page .tfp-founder-copy p:first-child {
  padding-left: 18px;
  border-left: 3px solid var(--green);
  color: var(--ink);
  font-weight: 760;
}
@media (max-width: 860px) {
  .taskforce-content-page .tfp-founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media (max-width: 560px) {
  .taskforce-content-page .tfp-founder-grid {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .taskforce-content-page .tfp-founder-grid h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

/* TaskForceAI Zealand photo card */

.taskforce-content-page .tfp-founder-photo {
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.taskforce-content-page .tfp-founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 28% center;
  filter: saturate(0.92) contrast(1.02);
}
.taskforce-content-page .tfp-founder-photo figcaption {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 860px) {
  .taskforce-content-page .tfp-founder-photo {
    max-width: 680px;
  }
  .taskforce-content-page .tfp-founder-photo img {
    aspect-ratio: 16 / 10;
    object-position: 24% center;
  }
}

/* TaskForceAI founder text lower alignment */

.taskforce-content-page .tfp-founder-copy {
  margin-top: 34px;
}
@media (max-width: 860px) {
  .taskforce-content-page .tfp-founder-copy {
    margin-top: 0;
  }
}

/* TaskForceAI situation heading size */

.taskforce-content-page #protocol h2 {
  font-size: clamp(2rem, 3.8vw, 3.95rem) !important;
  line-height: 1.04;
}
@media (max-width: 560px) {
  .taskforce-content-page #protocol h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.75rem) !important;
  }
}

/* TaskForceAI live request flow copy alignment */

.taskforce-content-page .tfp-visual-section .tfp-section-grid > .tfp-text-stack {
  margin-top: 104px;
}
@media (max-width: 860px) {
  .taskforce-content-page .tfp-visual-section .tfp-section-grid > .tfp-text-stack {
    margin-top: 0;
  }
}

