:root {
  --brand: #14351d;
  --brand-2: #1a4426;
  --brand-3: #2f8a57;
  --ink: #13251d;
  --charcoal: #172226;
  --slate: #53635c;
  --paper: #ffffff;
  --mist: #f3f8f4;
  --line: #dbe7de;
  --warm: #f4f1e8;
  --blue: #476177;
  --shadow: 0 28px 90px rgba(15, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(22px, 4vw, 58px);
  color: #f7fff8;
  background: rgba(12, 28, 19, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.form-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.04rem;
  font-weight: 950;
}

.brand img {
  display: block;
  width: 116px;
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--brand);
  background: #f7fff8;
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: 18px;
}

.nav-links a,
.text-link,
.site-footer a {
  color: rgba(247, 255, 248, 0.9);
  font-size: 0.9rem;
  font-weight: 820;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: #ffffff;
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button:focus-visible,
.security-link:focus-visible,
.nav-links a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(107, 225, 141, 0.72);
  outline-offset: 4px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: #f7fff8;
  background: var(--brand);
  box-shadow: 0 14px 34px rgba(20, 53, 29, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(20, 53, 29, 0.32);
}

.button-secondary {
  color: var(--brand);
  border-color: rgba(20, 53, 29, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: rgba(20, 53, 29, 0.42);
  background: rgba(255, 255, 255, 0.92);
}

.site-header .button-primary {
  color: var(--brand);
  background: #f7fff8;
  box-shadow: 0 10px 26px rgba(107, 225, 141, 0.18);
}

.hero-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(68px, 8vw, 118px) max(24px, calc((100vw - 1220px) / 2 + 24px));
  color: #f7fff8;
  background:
    linear-gradient(90deg, rgba(13, 36, 23, 0.98) 0%, rgba(13, 36, 23, 0.94) 38%, rgba(13, 36, 23, 0.76) 62%, rgba(13, 36, 23, 0.44) 100%),
    radial-gradient(circle at 72% 26%, rgba(107, 225, 141, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(13, 36, 23, 0.78), rgba(23, 34, 38, 0.82)),
    url("./assets/hero-stakeholder-discovery.jpg");
  background-position: center, center, center, right center;
  background-size: cover, cover, cover, auto 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6be18d;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.2vw, 5.65rem);
  line-height: 1.04;
}

.hero-lede {
  max-width: 760px;
  margin: 22px 0 28px;
  color: rgba(247, 255, 248, 0.92);
  font-size: clamp(1.13rem, 1.45vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-lede,
.hero-actions {
  animation: heroContentIn 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy h1 {
  animation-delay: 80ms;
}

.hero-lede {
  animation-delay: 160ms;
}

.hero-actions {
  animation-delay: 240ms;
}

.hero-section .button-secondary {
  color: #f7fff8;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.hero-section .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.mini-icon path,
.mini-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 28px;
}

.section-intro {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-intro.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.02;
}

.section-intro p:not(.eyebrow),
.contact-copy p {
  margin: 18px 0 0;
  color: #2d4038;
  font-size: 1.13rem;
  line-height: 1.62;
}

.pain-section,
.outputs-section,
.security-section {
  background: var(--paper);
}

.pain-grid,
.benefit-grid,
.trust-points,
.use-case-grid,
.package-grid,
.security-grid,
.output-grid {
  display: grid;
  gap: 16px;
}

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

.pain-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 38px;
}

.pain-snapshot .section-intro {
  margin-bottom: 0;
}

.scattered-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 138, 87, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fbf8 0%, #eef6f1 100%);
  box-shadow: 0 20px 70px rgba(20, 53, 29, 0.1);
}

.scattered-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scattered-items span {
  padding: 11px 14px;
  border: 1px solid rgba(20, 53, 29, 0.12);
  border-radius: 8px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.78);
  font-size: 1.01rem;
  font-weight: 850;
}

.scattered-panel p {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.18;
}

.pain-grid article,
.benefit-grid article,
.trust-points article,
.use-case-grid article,
.security-grid article,
.output-grid article,
.package-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfb;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.pain-grid article {
  min-height: 218px;
  padding: 26px;
}

.pain-grid-compact article {
  min-height: 178px;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--brand);
  background: #eef7f1;
}

.pain-grid h3,
.benefit-grid h3,
.trust-points h3,
.use-case-grid h3,
.output-grid h3,
.security-grid h3 {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.15rem;
  line-height: 1.25;
}

.pain-grid p,
.benefit-grid p,
.trust-points p,
.use-case-grid p,
.output-grid p,
.security-grid p,
.package-card p,
.package-card li {
  margin: 0;
  color: #2d4038;
  font-size: 1.08rem;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1220px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1220px) / 2 + 24px));
}

.value-section,
.use-case-section,
.packages-section {
  background: var(--mist);
}

.how-section {
  max-width: 1320px;
  padding-left: 28px;
  padding-right: 28px;
}

.how-section .section-intro {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.how-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-panel {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.comparison-panel h3 {
  color: var(--brand);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.comparison-panel ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-panel li {
  position: relative;
  padding-left: 28px;
  color: #2d4038;
  font-size: 1.14rem;
  line-height: 1.42;
}

.comparison-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8ca79a;
}

.before-panel {
  background: #fbfcfb;
}

.after-panel {
  color: #f7fff8;
  border-color: rgba(107, 225, 141, 0.28);
  background:
    radial-gradient(circle at 86% 8%, rgba(107, 225, 141, 0.18), transparent 34%),
    linear-gradient(135deg, #14351d 0%, #172226 100%);
  box-shadow: 0 30px 96px rgba(15, 35, 24, 0.22);
}

.after-panel h3,
.after-panel li {
  color: #f7fff8;
}

.after-panel li::before {
  background: #6be18d;
}

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

.benefit-grid article,
.trust-points article,
.security-grid article {
  padding: 28px;
}

.help-steps article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 30px;
}

.help-steps article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #f7fff8;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
}

.help-steps article h3,
.help-steps article p {
  grid-column: auto;
}

.trust-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  gap: 18px;
}

.trust-points article {
  background: #ffffff;
  min-height: 220px;
}

.use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.use-case-grid article {
  min-height: 176px;
  padding: 24px;
}

.compact-cases article {
  min-height: 150px;
  background: #ffffff;
}

.compact-cases p {
  font-size: 1.02rem;
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 40px;
}

.package-card h3 {
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.package-subtitle {
  margin: 14px 0 18px !important;
  color: var(--ink) !important;
  font-size: 1.12rem !important;
  font-weight: 850;
  line-height: 1.45 !important;
}

.package-card p:not(.package-subtitle) {
  font-size: 1.13rem;
  line-height: 1.62;
}

.package-card h4 {
  margin: 28px 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 1.2rem;
}

.package-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.guided-card {
  color: #f7fff8;
  border-color: rgba(107, 225, 141, 0.28);
  background:
    radial-gradient(circle at 80% 0%, rgba(107, 225, 141, 0.18), transparent 38%),
    linear-gradient(135deg, #14351d 0%, #172226 100%);
  box-shadow: var(--shadow);
}

.package-card:hover,
.trust-points article:hover,
.output-grid article:hover,
.use-case-grid article:hover,
.security-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 138, 87, 0.26);
  box-shadow: 0 18px 54px rgba(15, 35, 24, 0.12);
}

.guided-card:hover {
  border-color: rgba(107, 225, 141, 0.5);
  box-shadow: 0 34px 100px rgba(15, 35, 24, 0.28);
}

.guided-card h3,
.guided-card h4,
.guided-card .package-subtitle {
  color: #f7fff8 !important;
}

.guided-card p,
.guided-card li {
  color: rgba(247, 255, 248, 0.94);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #073412;
  background: #6be18d;
  box-shadow: 0 12px 28px rgba(107, 225, 141, 0.3);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.output-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.output-grid article {
  min-height: 178px;
  padding: 26px;
  background: #ffffff;
}

.security-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.security-grid article {
  min-height: 210px;
}

.security-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgba(20, 53, 29, 0.24);
  border-radius: 8px;
  color: var(--brand);
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.security-link:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 53, 29, 0.4);
  background: #f7fbf8;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.82fr);
  gap: 54px;
  align-items: start;
  padding: 96px max(28px, calc((100vw - 1320px) / 2 + 28px));
  color: #f7fff8;
  background: linear-gradient(135deg, #14351d 0%, #172226 78%);
}

.contact-copy {
  max-width: 650px;
}

.contact-copy p {
  color: rgba(247, 255, 248, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: rgba(247, 255, 248, 0.94);
  font-size: 1rem;
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 16px;
  color: #f7fff8;
  background: rgba(5, 20, 12, 0.48);
  font: inherit;
  font-size: 1.04rem;
  line-height: 1.45;
}

.form-row select {
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(107, 225, 141, 0.28);
  border-color: #6be18d;
}

[data-reveal="true"] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 440ms cubic-bezier(0.22, 0.72, 0.24, 1),
    transform 440ms cubic-bezier(0.22, 0.72, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal-direction="left"] {
  transform: translateX(-10px) translateY(8px);
}

[data-reveal-direction="right"] {
  transform: translateX(10px) translateY(8px);
}

[data-reveal="true"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card[data-reveal="true"].is-visible:hover {
  transform: translateY(-4px);
}

.trust-points article[data-reveal="true"].is-visible:hover,
.output-grid article[data-reveal="true"].is-visible:hover,
.use-case-grid article[data-reveal="true"].is-visible:hover,
.security-grid article[data-reveal="true"].is-visible:hover {
  transform: translateY(-4px);
}

.comparison-panel[data-reveal="true"].is-visible:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 138, 87, 0.24);
  box-shadow: 0 18px 54px rgba(15, 35, 24, 0.12);
}

.after-panel[data-reveal="true"].is-visible:hover {
  border-color: rgba(107, 225, 141, 0.46);
  box-shadow: 0 34px 100px rgba(15, 35, 24, 0.28);
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal="true"],
  [data-reveal-direction="left"],
  [data-reveal-direction="right"],
  [data-reveal="true"].is-visible {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .security-link:hover,
  .package-card:hover,
  .trust-points article:hover,
  .output-grid article:hover,
  .use-case-grid article:hover,
  .security-grid article:hover,
  .comparison-panel[data-reveal="true"].is-visible:hover {
    transform: none;
  }
}


.form-row-hidden {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-section .button-secondary {
  color: #f7fff8;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: rgba(247, 255, 248, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status[data-tone="success"] {
  color: #aaf4bd;
}

.form-status[data-tone="error"] {
  color: #ffd7d7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(247, 255, 248, 0.8);
  background: #101a14;
}

.site-footer div {
  gap: 18px;
}

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

  .nav-links {
    display: none;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .pain-snapshot,
  .how-comparison,
  .use-case-grid,
  .trust-points,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .text-link {
    display: none;
  }

  .hero-section,
  .section,
  .split-section,
  .contact-section {
    padding: 58px 22px;
  }

  h1 {
    font-size: 2.24rem;
  }

  .hero-actions,
  .form-actions,
  .button,
  .header-actions .button {
    width: 100%;
  }

  .pain-grid,
  .pain-snapshot,
  .how-comparison,
  .benefit-grid,
  .use-case-grid,
  .trust-points,
  .package-grid,
  .security-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 0;
  }

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

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