:root {
  --green: #2f9e5f;
  --green-dark: #247b49;
  --green-bright: #3bc777;
  --mint: #dff4e7;
  --ink: #10281c;
  --ink-2: #173b2a;
  --cream: #faf8f2;
  --paper: #ffffff;
  --line: #e4e0d5;
  --body: #4b5e54;
  --muted: #7b8b82;
  --northstar: #163a52;
  --northstar-accent: #2f8f82;
  --shadow: 0 24px 70px rgba(16, 40, 28, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 224, 213, 0.9);
  background: rgba(250, 248, 242, 0.9);
  backdrop-filter: blur(16px);
}
.nav-inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100% - 56px);
  min-width: 0;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 31px;
  height: 31px;
}
.brand-copy {
  min-width: 0;
  line-height: 1;
}
.brand-name {
  display: block;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.brand-tag {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 6.8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-login {
  padding: 9px 13px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  padding: 12px 23px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s,
    background 0.18s,
    border-color 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(59, 199, 119, 0.35);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 24px rgba(47, 158, 95, 0.2);
}
.btn-primary:hover {
  background: var(--green-dark);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.btn-secondary:hover {
  border-color: #b8c5bd;
}
.btn-dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}
.btn-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 96px 0 92px;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 760px;
  background:
    radial-gradient(
      circle at 82% 11%,
      rgba(59, 199, 119, 0.13),
      transparent 29%
    ),
    radial-gradient(circle at 15% 40%, rgba(47, 158, 95, 0.08), transparent 25%);
  content: "";
}
.hero::after {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(47, 158, 95, 0.08);
  border-radius: 50%;
  content: "";
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
}
h1 {
  max-width: 650px;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.99;
}
.hero-copy {
  max-width: 600px;
  margin-top: 25px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.65;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.credibility {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}
.credibility::before {
  width: 24px;
  height: 1px;
  background: var(--green);
  content: "";
}
.visual-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 22px;
  color: var(--green-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.visual-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(59, 199, 119, 0.12);
  content: "";
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 58, 82, 0.12);
  border-radius: 22px;
  background: #f4f7f8;
  box-shadow: 0 35px 80px rgba(16, 40, 28, 0.17);
  transform: rotate(0.5deg);
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  border-bottom: 1px solid #dce5e7;
  background: white;
}
.northstar-logo {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.northstar-logo > div {
  min-width: 0;
}
.northstar-logo svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
}
.northstar-logo strong {
  display: block;
  color: var(--northstar);
  font-size: 12px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.northstar-logo small {
  display: block;
  margin-top: 2px;
  color: #71838e;
  font-size: 7px;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.dash-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #627680;
  font-size: 9px;
}
.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #dcebe8;
  color: var(--northstar);
  font-size: 9px;
  font-weight: 700;
}
.dash-layout {
  display: grid;
  grid-template-columns: 112px 1fr;
}
.dash-side {
  padding: 16px 10px;
  background: var(--northstar);
}
.dash-side span {
  display: block;
  margin-bottom: 5px;
  border-radius: 6px;
  padding: 7px 8px;
  color: #a9bec9;
  font-size: 7px;
}
.dash-side span:first-child {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.dash-main {
  min-width: 0;
  padding: 17px;
}
.dash-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dash-heading h2 {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.dash-filter {
  border: 1px solid #d6e0e3;
  border-radius: 6px;
  background: white;
  padding: 5px 8px;
  color: #60747d;
  font-size: 7px;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dash-metric {
  min-width: 0;
  border: 1px solid #e0e8ea;
  border-radius: 9px;
  background: white;
  padding: 10px;
}
.dash-metric b {
  display: block;
  color: var(--northstar);
  font-size: 15px;
  line-height: 1.15;
}
.dash-metric span {
  display: block;
  margin-top: 5px;
  color: #75868d;
  font-size: 6.5px;
  line-height: 1.25;
  text-transform: uppercase;
}
.dash-data-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9px;
  margin-top: 9px;
}
.dash-panel {
  border: 1px solid #e0e8ea;
  border-radius: 9px;
  background: white;
  padding: 11px;
}
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #395263;
  font-size: 8px;
  font-weight: 600;
}
.bars {
  display: flex;
  height: 73px;
  align-items: end;
  gap: 7px;
  padding-top: 9px;
  border-bottom: 1px solid #e6edef;
}
.bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #43aa8b, #2f8f82);
  animation: bar-in 0.8s both;
  transform-origin: bottom;
}
.bar:nth-child(2) {
  animation-delay: 0.08s;
}
.bar:nth-child(3) {
  animation-delay: 0.16s;
}
.bar:nth-child(4) {
  animation-delay: 0.24s;
}
.bar:nth-child(5) {
  animation-delay: 0.32s;
}
.bar:nth-child(6) {
  animation-delay: 0.4s;
}
@keyframes bar-in {
  from {
    transform: scaleY(0.1);
    opacity: 0.25;
  }
}
.ring-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
.ring {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--northstar-accent) 0 79%, #dfe8e9 79%);
}
.ring::after {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--northstar);
  font-size: 13px;
  font-weight: 700;
  content: "2.1x";
}
.ring-copy b {
  display: block;
  color: var(--northstar);
  font-size: 10px;
}
.ring-copy span {
  display: block;
  margin-top: 3px;
  color: #75868d;
  font-size: 7px;
  line-height: 1.35;
}
.dash-table-wrap {
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid #e0e8ea;
  border-radius: 9px;
  background: white;
}
.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 6.7px;
}
.dash-table th,
.dash-table td {
  padding: 7px 8px;
  border-bottom: 1px solid #edf1f2;
  text-align: left;
  white-space: nowrap;
}
.dash-table th {
  color: #75868d;
  font-weight: 500;
  text-transform: uppercase;
}
.dash-table td {
  color: #3d525d;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-radius: 99px;
  padding: 2px 5px;
  background: #e6f5ed;
  color: #23794a;
}
.status::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.status.review {
  background: #fff2d8;
  color: #93651a;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: white;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  align-items: center;
  min-height: 96px;
}
.trust-title {
  padding-right: 30px;
  color: var(--body);
  font-size: 14px;
}
.trust-item {
  padding: 11px 20px;
  border-left: 1px solid var(--line);
}
.trust-item strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.trust-item span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding: 112px 0;
}
.section-tight {
  padding: 82px 0;
}
.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.section-soft {
  background: #f1f5ef;
}
.section-white {
  background: white;
}
.section-heading {
  max-width: 760px;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.section-heading p {
  margin-top: 20px;
  color: var(--body);
  font-size: 18px;
}
.section-dark .section-heading p {
  color: #b8c9c0;
}
.section-dark .eyebrow {
  color: var(--green-bright);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 52px;
}
.outcome-card {
  min-height: 235px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}
.outcome-card:first-child {
  background: var(--green);
  border-color: transparent;
  color: white;
}
.outcome-number {
  display: block;
  margin-bottom: 45px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.outcome-card h3 {
  font-size: 21px;
}
.outcome-card p {
  margin-top: 8px;
  color: #b9c9c1;
  font-size: 14px;
}
.outcome-card:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 54px;
}
.timeline-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.04);
}
.timeline-card.fast {
  border-color: rgba(59, 199, 119, 0.45);
  background: rgba(59, 199, 119, 0.075);
}
.timeline-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}
.timeline-badge {
  border-radius: 99px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #b9c9c1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fast .timeline-badge {
  background: var(--green-bright);
  color: var(--ink);
}
.timeline {
  margin-top: 25px;
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 17px;
  color: #b8c9c0;
  font-size: 14px;
}
.timeline-step:not(:last-child)::after {
  position: absolute;
  top: 15px;
  bottom: 1px;
  left: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}
.step-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 2px solid #70847a;
  border-radius: 50%;
  background: var(--ink);
}
.fast .step-dot {
  border-color: var(--green-bright);
}
.delay {
  color: #d59a72;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}
.removed {
  color: var(--green-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
  margin-top: 32px;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--body);
  font-size: 15px;
}
.feature-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--mint);
  content: "";
}
.feature-list li::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 5px;
  height: 3px;
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}
.callout {
  margin-top: 30px;
  border-left: 3px solid var(--green);
  padding: 3px 0 3px 18px;
  font-size: 18px;
  font-weight: 600;
}

.brand-preview {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, #173f58, #10281c);
  box-shadow: var(--shadow);
}
.brand-preview::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  content: "";
  pointer-events: none;
}
.portal {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f4f7f8;
}
.portal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #dce5e7;
  background: white;
}
.portal-upload {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 25px;
  text-align: center;
}
.upload-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 13px;
  place-items: center;
  border-radius: 15px;
  background: #e2efec;
  color: var(--northstar);
}
.portal-upload h3 {
  color: var(--northstar);
  font-size: 20px;
}
.portal-upload p {
  max-width: 300px;
  margin: 7px auto 17px;
  color: #6b7e87;
  font-size: 12px;
}
.portal-upload button {
  border: 0;
  border-radius: 8px;
  padding: 8px 13px;
  background: var(--northstar-accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
}
.powered {
  position: absolute;
  right: 38px;
  bottom: 33px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analytics-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  margin-top: 50px;
}
.filter-card {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: white;
}
.filter-card h3 {
  font-size: 18px;
}
.field {
  margin-top: 17px;
}
.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--body);
  font-size: 12px;
  font-weight: 600;
}
.field select,
.field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  background: #fcfbf8;
  color: var(--ink);
}
.filter-card .btn {
  width: 100%;
  margin-top: 19px;
}
.analytics-board {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: white;
  box-shadow: 0 18px 45px rgba(16, 40, 28, 0.07);
}
.analytics-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.analytics-top h3 {
  font-size: 20px;
}
.analytics-top span {
  color: var(--muted);
  font-size: 12px;
}
.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 19px;
}
.analytics-metric {
  border-radius: 12px;
  padding: 15px;
  background: #f5f7f4;
}
.analytics-metric strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.035em;
}
.analytics-metric span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}
.chart-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  margin-top: 12px;
}
.chart-card {
  min-width: 0;
  border: 1px solid #ece9e0;
  border-radius: 13px;
  padding: 16px;
}
.chart-card h4 {
  font-size: 13px;
}
.line-chart {
  position: relative;
  height: 150px;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 36px,
    #f0eee7 36px 37px
  );
}
.line-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.platform-row {
  margin-top: 15px;
}
.platform-line {
  display: grid;
  grid-template-columns: 72px 1fr 25px;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--body);
  font-size: 10px;
}
.platform-track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #edf0eb;
}
.platform-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}
.assumption-note {
  margin-top: 20px;
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
  counter-reset: process;
}
.process-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  background: white;
  counter-increment: process;
}
.process-card::after {
  position: absolute;
  right: -5px;
  bottom: -30px;
  color: rgba(47, 158, 95, 0.07);
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  content: counter(process, decimal-leading-zero);
}
.process-num {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.process-card h3 {
  margin-top: 52px;
  font-size: 22px;
}
.process-card p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--body);
  font-size: 14px;
}
.complexity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}
.complexity-list span {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--body);
  font-size: 12px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 50px;
}
.portfolio-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}
.capability {
  min-height: 150px;
  padding: 23px;
  background: white;
}
.capability svg {
  width: 25px;
  height: 25px;
  color: var(--green);
}
.capability h3 {
  margin-top: 22px;
  font-size: 16px;
}
.capability p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}
.portfolio-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 31px;
  background: var(--ink);
  color: white;
}
.portfolio-aside .big {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.portfolio-aside p {
  margin-top: 16px;
  color: #b8c9c0;
}
.portfolio-aside .mono {
  color: var(--green-bright);
  font-size: 10px;
}

.calculator {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  margin-top: 50px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: white;
  box-shadow: var(--shadow);
}
.calculator-inputs {
  padding: 20px;
}
.calculator-inputs h3 {
  font-size: 21px;
}
.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
.calc-field label {
  display: block;
  min-height: 38px;
  margin-bottom: 6px;
  color: var(--body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.input-wrap {
  position: relative;
}
.input-wrap span {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted);
  font-size: 13px;
  transform: translateY(-50%);
}
.input-wrap .suffix {
  right: 12px;
  left: auto;
}
.calc-field input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fcfbf8;
  color: var(--ink);
}
.input-wrap.prefix input {
  padding-left: 28px;
}
.input-wrap.has-suffix input {
  padding-right: 32px;
}
.calc-results {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 30px;
  background: var(--ink);
  color: white;
}
.calc-results::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 45px solid rgba(59, 199, 119, 0.08);
  border-radius: 50%;
  content: "";
}
.calc-results h3 {
  font-size: 20px;
}
.result-primary {
  margin-top: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.result-primary strong {
  display: block;
  color: var(--green-bright);
  font-size: clamp(46px, 6vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1;
}
.result-primary span {
  color: #b8c9c0;
  font-size: 13px;
}
.result-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 25px;
  margin-top: 24px;
}
.result-item strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.result-item span {
  display: block;
  margin-top: 3px;
  color: #9fb1a8;
  font-size: 11px;
  line-height: 1.3;
}
.estimate-note {
  position: relative;
  z-index: 1;
  margin-top: 23px;
  color: #82998d;
  font-size: 10px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}
.platform {
  min-width: 145px;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 21px;
  background: white;
}
.platform strong {
  display: block;
  font-size: 19px;
}
.platform span {
  display: inline-block;
  margin-top: 14px;
  border-radius: 99px;
  padding: 4px 8px;
  background: #f0f2ec;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.platform.available span {
  background: var(--mint);
  color: var(--green-dark);
}
.platform-note {
  max-width: 760px;
  margin-top: 25px;
  color: var(--body);
  font-size: 14px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.use-card {
  grid-column: span 4;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  background: white;
}
.use-card:nth-child(1),
.use-card:nth-child(5) {
  grid-column: span 5;
}
.use-card:nth-child(2),
.use-card:nth-child(6) {
  grid-column: span 7;
}
.use-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}
.use-card h3 {
  margin-top: 32px;
  font-size: 20px;
}
.use-card p {
  margin-top: 8px;
  color: var(--body);
  font-size: 14px;
}

.testimonial {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
  color: white;
}
.quote {
  padding: 55px;
}
.quote-mark {
  color: var(--green-bright);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.7;
}
blockquote {
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.16;
}
.attribution {
  margin-top: 30px;
  color: #aebfb6;
  font-size: 14px;
}
.attribution strong {
  display: block;
  color: white;
}
.comparison {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  background: var(--green);
}
.comparison-row {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.comparison-row span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}
.comparison-row strong {
  display: block;
  margin-top: 4px;
  font-size: 35px;
  letter-spacing: -0.04em;
}
.comparison-row:last-child {
  border: 0;
}

.faq-list {
  max-width: 900px;
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
}
.faq-list details {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
  overflow-wrap: anywhere;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  color: var(--green);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  content: "+";
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--body);
  overflow-wrap: anywhere;
}

.final-cta {
  padding: 40px 0 90px;
}
.final-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 70px;
  background: var(--ink);
  color: white;
}
.final-box::before {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 480px;
  height: 480px;
  border: 80px solid rgba(59, 199, 119, 0.09);
  border-radius: 50%;
  content: "";
}
.final-box .eyebrow {
  color: var(--green-bright);
}
.final-box h2 {
  position: relative;
  max-width: 730px;
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1;
}
.final-box p {
  position: relative;
  max-width: 680px;
  margin-top: 20px;
  color: #b8c9c0;
  font-size: 18px;
}
.final-box .button-row {
  position: relative;
}
.final-note {
  position: relative;
  margin-top: 17px;
  color: #81968b;
  font-size: 12px;
}

footer {
  border-top: 1px solid var(--line);
  background: white;
}
.footer-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding: 48px 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 23px;
}
.footer-links a {
  color: var(--body);
  font-size: 13px;
  text-decoration: none;
}
.footer-fine {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-links {
    gap: 16px;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-visual {
    max-width: 760px;
  }
  .analytics-layout {
    grid-template-columns: 250px 1fr;
  }
  .analytics-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .calculator {
    grid-template-columns: 1fr;
  }
  .use-card,
  .use-card:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    min-height: 68px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    width: auto;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    background: rgba(250, 248, 242, 0.98);
    box-shadow: 0 22px 55px rgba(16, 40, 28, 0.16);
    backdrop-filter: blur(16px);
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-links a,
  .nav-links a:nth-child(n) {
    display: flex;
    min-height: 46px;
    align-items: center;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 16px;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: #f1eee5;
  }
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .nav-actions .nav-login,
  .nav-actions .btn {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
  }
  .site-nav.menu-open .nav-menu {
    display: block;
    animation: nav-in 0.18s ease-out;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }
  .hero {
    padding: 70px 0 66px;
  }
  .hero-grid {
    gap: 42px;
  }
  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
  .hero-copy {
    font-size: 17px;
  }
  .button-row .btn {
    width: 100%;
  }
  .visual-label {
    margin-left: 0;
  }
  .dashboard-shell {
    transform: none;
  }
  .dash-layout {
    grid-template-columns: 1fr;
  }
  .dash-side {
    display: none;
  }
  .dash-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .dash-data-grid {
    grid-template-columns: 1fr;
  }
  .dash-table-wrap {
    overflow-x: auto;
  }
  .dash-table {
    min-width: 520px;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
  }
  .trust-title {
    grid-column: 1 / -1;
    padding: 5px 0 13px;
  }
  .trust-item {
    border-left: 0;
    padding: 10px 0;
  }
  .section {
    padding: 82px 0;
  }
  .section-tight {
    padding: 68px 0;
  }
  .outcome-grid,
  .timeline-grid,
  .analytics-layout,
  .chart-grid,
  .testimonial {
    grid-template-columns: 1fr;
  }
  .outcome-card {
    min-height: 205px;
  }
  .outcome-number {
    margin-bottom: 30px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .filter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 13px;
  }
  .filter-card h3,
  .filter-card .btn {
    grid-column: 1 / -1;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    min-height: 230px;
  }
  .portfolio-main {
    grid-template-columns: 1fr 1fr;
  }
  .calc-fields {
    grid-template-columns: 1fr;
  }
  .use-card,
  .use-card:nth-child(n) {
    grid-column: 1 / -1;
  }
  .quote,
  .comparison {
    padding: 38px 28px;
  }
  .final-box {
    padding: 50px 28px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .brand {
    max-width: calc(100% - 52px);
  }
  .brand-tag {
    display: none;
  }
  .brand-name {
    font-size: 20px;
  }
  .faq-list summary {
    gap: 12px;
    padding: 20px 0;
    font-size: 17px;
  }
  .nav-actions {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 54px;
  }
  .dash-top {
    padding: 13px;
  }
  .dash-user span {
    display: none;
  }
  .dash-main {
    padding: 12px;
  }
  .dash-metrics {
    gap: 6px;
  }
  .dash-metric {
    padding: 9px;
  }
  .dash-metric b {
    font-size: 13px;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .trust-title {
    grid-column: auto;
  }
  .trust-item {
    border-top: 1px solid var(--line);
  }
  .filter-card {
    grid-template-columns: 1fr;
  }
  .filter-card h3,
  .filter-card .btn {
    grid-column: auto;
  }
  .analytics-board {
    padding: 13px;
  }
  .analytics-metrics,
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
  .analytics-metric strong {
    font-size: 19px;
  }
  .portfolio-main {
    grid-template-columns: 1fr;
  }
  .calculator {
    padding: 8px;
  }
  .calculator-inputs,
  .calc-results {
    padding: 23px 18px;
  }
  .platform {
    min-width: 100%;
  }
  blockquote {
    font-size: 28px;
  }
}

@keyframes nav-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
