:root {
  --ink: #f7f9f4;
  --muted: #b6c0b2;
  --subtle: #798473;
  --paper: #f4f6ee;
  --paper-ink: #11140f;
  --paper-muted: #555f50;
  --bg: #070907;
  --panel: rgba(21, 25, 19, 0.84);
  --panel-strong: rgba(31, 36, 28, 0.94);
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --green: #a6ff4d;
  --green-dark: #24430f;
  --blue: #38c7ff;
  --red: #ff5b62;
  --amber: #ffd05a;
  --radius: 8px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(145deg, #050705 0%, #10160d 44%, #090a08 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

a {
  color: inherit;
}

img {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 6px;
  background: #fff;
  color: #060806;
  padding: 10px 14px;
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(7, 9, 7, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
}

.brand,
.site-header nav,
.hero-actions,
.proof-strip,
.project-topline,
.footer,
.footer nav {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 950;
}

.brand img {
  border-radius: 8px;
}

.site-header nav {
  gap: 4px;
}

.site-header nav a {
  min-height: 38px;
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 780;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-header .nav-cta {
  color: #0c1308;
  background: var(--green);
}

.hero,
.section,
.values,
.project-band,
.policy-section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(48px, 7vw, 96px) 0 58px;
}

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

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.15rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-lede,
.section p,
.project-band p,
.values p,
.policy-section p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button-primary {
  background: var(--green);
  color: #0a1206;
  box-shadow: 0 18px 44px rgba(166, 255, 77, 0.18);
}

.button-secondary,
.button-quiet {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-strip span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #dfe8da;
  font-size: 0.9rem;
  font-weight: 750;
}

.suite-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(19, 23, 18, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.suite-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.suite-header .mini-label,
.suite-grid .mini-label {
  display: block;
  margin-bottom: 7px;
  color: #91a08b;
  font-size: 0.66rem;
}

.suite-header strong {
  display: block;
  font-size: 2.1rem;
  line-height: 0.95;
}

.suite-header img {
  width: 72px;
  height: auto;
  object-fit: contain;
  margin-top: 4px;
}

.suite-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: var(--radius);
  background: #f2f5eb;
  color: var(--paper-ink);
}

.suite-main h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.05rem);
  line-height: 0.96;
}

.suite-main p {
  color: var(--paper-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.suite-main .mini-label {
  color: #557c29;
}

.cluster-mini {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(166, 255, 77, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(166, 255, 77, 0.06) 1px, transparent 1px),
    #080b08;
  background-size: 26px 26px;
  color: var(--ink);
  padding: 16px;
  overflow: hidden;
}

.cluster-mini-top,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #9ba695;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cluster-mini-top strong {
  color: var(--green);
}

.rpm-scale {
  position: relative;
  height: 76px;
  border-bottom: 7px solid var(--green);
  margin-top: 12px;
}

.rpm-scale::before {
  content: "";
  position: absolute;
  left: 0;
  right: 16%;
  bottom: 0;
  height: 27px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--amber), var(--red));
}

.rpm-scale i {
  position: absolute;
  left: var(--w);
  bottom: 0;
  width: 3px;
  height: 56px;
  background: rgba(255, 255, 255, 0.75);
  transform: skewX(-12deg);
}

.rpm-readout {
  font-size: clamp(2.8rem, 7vw, 4.25rem);
  line-height: 0.9;
  font-weight: 1000;
}

.rpm-readout small {
  font-size: 1rem;
  color: #b4bdb0;
}

.metric-row {
  letter-spacing: 0;
  color: #d7dfd3;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.suite-grid article {
  min-height: 170px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.suite-grid img {
  margin-bottom: 18px;
  border-radius: 8px;
}

.suite-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.suite-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section,
.project-band,
.values,
.policy-section {
  padding-block: clamp(58px, 8vw, 106px);
}

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

.section-heading h2,
.dash-copy h2,
.supported h2,
.privacy h2,
.policy-section h2 {
  max-width: 850px;
}

.project-band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: var(--paper);
  color: var(--paper-ink);
}

.project-band .eyebrow {
  color: #427318;
}

.project-band p {
  color: var(--paper-muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-radius: var(--radius);
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(22, 30, 16, 0.1);
}

.project-topline {
  justify-content: space-between;
  margin-bottom: 28px;
}

.project-topline img {
  border-radius: 12px;
}

.project-topline span {
  border-radius: 999px;
  padding: 8px 11px;
  background: #eef2e8;
  color: #596153;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
}

.project-card p {
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.project-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
  color: #2b3128;
  font-weight: 720;
}

.project-card li {
  position: relative;
  padding-left: 22px;
}

.project-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.project-card .button {
  margin-top: auto;
  width: fit-content;
}

.gps-card li::before {
  background: var(--red);
}

.pdf-card li::before {
  background: var(--amber);
}

.dashconnect {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.feature-list article,
.supported-grid article,
.value-grid article,
.privacy-list div {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(166, 255, 77, 0.14);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-list p,
.supported-grid p,
.value-grid p,
.privacy-list span {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.supported {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.supported-grid,
.value-grid,
.privacy-list {
  display: grid;
  gap: 12px;
}

.values {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.privacy-list div strong {
  display: block;
  margin-bottom: 8px;
}

.policy-section {
  max-width: 900px;
  border-top: 1px solid var(--line-soft);
}

.policy-section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 5px;
}

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

.footer nav {
  gap: 14px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 760;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--ink);
  outline: none;
}

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

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .dashconnect,
  .supported,
  .privacy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .project-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, 520px);
    margin-top: 12px;
    padding: 10px;
  }

  .brand span {
    display: none;
  }

  .site-header nav a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .site-header nav a[href="#values"] {
    display: none;
  }

  .hero,
  .section,
  .values,
  .policy-section,
  .footer {
    width: min(100% - 24px, 520px);
  }

  .hero {
    gap: 30px;
    padding-top: 66px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .hero-actions .button,
  .project-card .button {
    width: 100%;
  }

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

  .suite-main,
  .suite-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .suite-main {
    padding: 14px;
  }

  .cluster-mini {
    min-height: 220px;
  }

  .project-band {
    padding-inline: 12px;
  }

  .project-card {
    padding: 18px;
  }

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

@media (max-width: 430px) {
  .site-header nav {
    gap: 2px;
  }

  .site-header nav a {
    padding-inline: 8px;
  }

  .site-header nav a[href="#privacy"] {
    display: none;
  }

  .suite-header img {
    width: 58px;
  }

  .rpm-readout {
    font-size: 2.7rem;
  }
}
