/* ============================================================
   MeNetZero — Carbon management platform landing page
   Deep navy + green. Space Grotesk / Manrope / IBM Plex Mono
   ============================================================ */

:root {
  /* Surfaces — deep navy */
  --navy-950: #060f1a;
  --navy-900: #08182a;
  --navy-850: #0b2036;
  --navy-800: #0e2740;
  --navy-700: #143352;
  --navy-card: #0c2238;

  /* Light surfaces */
  --paper: #eef3f1;
  --paper-2: #e4ebe8;
  --paper-card: #ffffff;

  /* Ink */
  --ink: #ecf4f2;
  --ink-soft: #b6c8d0;
  --muted: #7d95a3;
  --paper-ink: #0a1b2e;
  --paper-muted: #4e636e;

  /* Accents — shared chroma/lightness, hue varies */
  --green: #009f8e;
  --green-bright: #33cdba;
  --green-deep: #006d61;
  --blue: #4d92f0;
  --blue-bright: #74aefb;

  /* Lines */
  --line: rgba(180, 210, 220, 0.12);
  --line-strong: rgba(180, 210, 220, 0.22);
  --line-paper: rgba(10, 27, 46, 0.1);

  /* Type */
  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "Poppins", sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--green);
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--green);
  opacity: 0.7;
}
/* .eyebrow.center::before {
  display: none;
} */

.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  margin-top: 18px;
  text-wrap: balance;
}
.section-title em {
  color: var(--green);
  font-style: normal;
}
.lead {
  font-size: 16px;
  /* Default to the light ink used on the dark body background. Light
     sections override this: .paper .lead sets the dark paper ink. This was
     previously --paper-ink, which rendered near-black on the dark body and
     was only legible where an ID-specific rule happened to override it. */
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section {
  position: relative;
}
.section-pad {
  padding-block: clamp(72px, 10vw, 140px);
}

.paper {
  background: #eef5f5;
  color: var(--paper-ink);
}
.paper .lead {
  color: var(--paper-muted);
  margin-top: 20px;
}
.paper .eyebrow {
  color: var(--green-deep);
}
.paper .eyebrow::before {
  background: var(--green-deep);
}

/* emerald-tinted dark surface — alternates with the navy sections */
.surface-emerald {
  background: radial-gradient(900px 500px at 85% 0%, rgba(40, 199, 133, 0.1), transparent 60%), linear-gradient(180deg, #07241d, #051a1c);
  border-block: 1px solid rgba(40, 199, 133, 0.14);
}
.surface-emerald .eyebrow {
  color: var(--green-bright);
}

.center-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.surface-emerald .center-head .lead,
.dash-layout .lead {
  margin-inline: auto;
  margin-top: 18px;
  margin-bottom: 40px;
  color: var(--white);
}
.cta-inner h2 em,
.news-copy h3 em {
  color: var(--green);
  font-style: normal;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.25s,
    box-shadow 0.25s,
    color 0.25s;
  will-change: transform;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--paper-ink);
}
.nav-cta .btn-primary {
  background: var(--green);
  color: #fff;
}
.nav-cta .btn-primary:hover {
  background: var(--paper-ink);
  color: #fff;
}
.btn-ghost {
  border: 1px solid var(--green);
  color: var(--green);
}
.btn-ghost:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.paper .btn-ghost {
  border-color: var(--line-paper);
  color: var(--paper-ink);
}
.paper .btn-ghost:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.btn-arrow svg {
  transition: transform 0.25s;
}
.btn-arrow:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 10px 0 auto 0;
  z-index: 100;
  transition:
    background 0.4s,
    border-color 0.4s,
    backdrop-filter 0.4s;

  /* border-bottom: 1px solid transparent;
  background: var(--green-bright); */
  /* #2c7e74 */
}
.site-header.scrolled {
  backdrop-filter: blur(16px) saturate(140%);
}
.logo-img {
  max-width: 90%;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 72px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 18px 1px rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  max-width: 1140px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-right: auto;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--green-bright), var(--green-deep));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px -4px rgba(40, 199, 133, 0.6);
}
.brand-mark svg {
  width: 17px;
  height: 17px;
}
.brand b {
  font-weight: 600;
}
.brand span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 5px;
}
.nav-links a {
  font-size: 14px;
  color: var(--paper-ink);
  font-weight: 600;
  position: relative;
  padding: 6px 12px;
  transition:
    background 0.2s,
    color 0.2s;
  background: transparent;
  border-radius: 20px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--paper-ink);
  transition: width 0.28s ease;
  display: none;
}
.nav-links a:hover {
  background: var(--green);
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-login {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: var(--green);
  padding: 20px;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.3s;
}
.nav-login:hover {
  color: #fff;
  background: var(--paper-ink);
}

.menu-toggle {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 150px;
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
  background: #eef5f5;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* background-image: url("screenshots/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  background-color: #fff;
  width: 100%;
  height: 100%; */
  /* background: radial-gradient(900px 520px at 78% -8%, rgba(40, 199, 133, 0.16), transparent 60%), radial-gradient(760px 520px at 8% 12%, rgba(77, 146, 240, 0.12), transparent 60%); */
}
.hero-grid-tex {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1000px 600px at 60% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(1000px 600px at 60% 0%, #000 30%, transparent 78%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1px solid var(--green);
  /* background: rgba(40, 199, 133, 0.07); */
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 26px;
}
.hero-pill .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--green);
  color: #042417;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--paper-ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.hero p.lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.6vw, 16px);
  /* The hero is a LIGHT surface (#eef5f5) but is not a .paper section, so it
     does not pick up the .paper .lead override and would otherwise fall through
     to the dark-background default -- 1.6:1 on this background. */
  color: var(--paper-muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}
.hero-stat .num {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-stat .num span {
  color: var(--green);
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero dashboard panel */
.hero-panel {
  position: relative;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow:
    0 40px 90px -40px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  z-index: -1;
  background: linear-gradient(160deg, rgba(40, 199, 133, 0.5), transparent 40%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.panel-top .t {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.panel-top .t small {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 3px;
}
.panel-badge {
  font-size: 12px;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(79, 227, 167, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 227, 167, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(79, 227, 167, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 227, 167, 0);
  }
}

.panel-figure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.panel-figure .big {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.panel-figure .unit {
  font-size: 14px;
  color: var(--muted);
}
.panel-figure .delta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-bright);
  background: rgba(40, 199, 133, 0.12);
  padding: 4px 10px;
  border-radius: 8px;
}
.panel-chart {
  margin-top: 8px;
}
.panel-legend {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.panel-legend .li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-soft);
}
.panel-legend .dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.hero-floater {
  position: absolute;
  right: -18px;
  bottom: 38px;
  background: rgba(8, 24, 42, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.85);
}
.hero-floater .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(77, 146, 240, 0.16);
  display: grid;
  place-items: center;
}
.hero-floater .ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-bright);
}
.hero-floater .tx b {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  white-space: nowrap;
}
.hero-floater .tx small {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  border-block: 1px solid var(--line);
  background: var(--navy-900);
}
.trust-inner {
  padding-block: 30px;
}
.trust-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  margin-bottom: 40px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  justify-content: center;
}
.trust-chip {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}
.trust-chip:hover {
  border-color: var(--green);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   GENERIC GRID CARDS
   ============================================================ */
.grid {
  display: grid;
  gap: 20px;
}
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.head-row .lead,
#platform .center-head .lead {
  color: var(--white);
}
#platform .center-head .lead {
  margin: 30px 0px 50px;
}
#industries .head-row .lead {
  margin-bottom: 5px;
}

/* Scope coverage */
.scope-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.scope-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.scope-card {
  background: #eef5f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.scope-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.scope-card .sc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
}
.scope-card h3 {
  font-size: 19px;
  margin: 12px 0 8px;
  color: var(--navy-card);
}
.scope-card p {
  font-size: 14px;
  color: var(--paper-ink);
  line-height: 1.55;
}
.scope-card .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent, var(--green));
  opacity: 0.9;
}
.scope-card.s1 {
  --accent: #4fe3a7;
}
.scope-card.s2 {
  --accent: #4d92f0;
}
.scope-card.s3 {
  --accent: #c084fc;
}
.scope-card.s4 {
  --accent: #f7b955;
}

.scope-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.donut-wrap {
  position: relative;
  width: min(330px, 80%);
}
.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}
.donut-center .v {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 600;
}
.donut-center .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-card);
  display: block;
}
.donut-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  width: 100%;
  max-width: 330px;
}
.donut-legend .li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-soft);
}
.donut-legend .li b {
  color: var(--ink);
  margin-left: auto;
  font-family: var(--display);
  font-weight: 600;
}
.donut-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex: none;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feat-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feat-card {
  background: var(--paper-card);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.3s,
    border-color 0.3s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(10, 27, 46, 0.3);
  border-color: rgba(40, 199, 133, 0.4);
}
.feat-ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(40, 199, 133, 0.16), rgba(77, 146, 240, 0.12));
  margin-bottom: 20px;
}
.feat-ic svg {
  width: 35px;
  height: 35px;
  stroke: var(--green-deep);
  fill: none;
  stroke-width: 1.7;
}
.feat-card h3 {
  font-size: 20px;
  margin-bottom: 0px;
  color: var(--paper-ink);
}
.feat-card p {
  font-size: 14.5px;
  color: var(--paper-muted);
  line-height: 1.6;
}
.feat-card .tag {
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
}

/* ============================================================
   HOW IT WORKS — pipeline
   ============================================================ */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
}
.pipe-step {
  position: relative;
  padding: 30px 26px 30px 0;
}
.pipe-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 52px;
  width: 26px;
  height: 26px;
  border-top: 1.5px solid var(--line-strong);
  border-right: 1.5px solid var(--line-strong);
  transform: rotate(45deg);
}
.pipe-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  background: rgba(40, 199, 133, 0.12);
  color: var(--green-bright);
  border: 1px solid rgba(40, 199, 133, 0.3);
  margin-bottom: 20px;
}
.pipe-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.pipe-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.pipe-step .meta {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Flow diagram (animated) */
.flow-card {
  margin-top: 64px;
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 46px);
}
.flow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.flow-head .t {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   DASHBOARD SHOWCASE
   ============================================================ */
.dash-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.dash-mock {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 50px 100px -45px rgba(0, 0, 0, 0.8);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.dash-bar .d {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line-strong);
}
.dash-bar .url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--navy-950);
  padding: 6px 14px;
  border-radius: 8px;
  flex: 1;
}
.dash-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dash-tile {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.dash-tile.wide {
  grid-column: span 2;
}
.dash-tile .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.dash-tile .v {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  margin-top: 6px;
}
.dash-tile .v small {
  font-size: 13px;
  color: var(--green-bright);
  font-family: var(--body);
  margin-left: 6px;
}
#dashboard .reveal.in {
  order: 2;
}
#dashboard .dash-mock.reveal.d1.in {
  order: 1;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list .tick {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(40, 199, 133, 0.14);
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 100%;
}
.feature-list .tick svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-bright);
  stroke-width: 2.4;
  fill: none;
}
.feature-list b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--green);
}
.feature-list span {
  font-size: 14px;
  color: var(--ink);
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-card);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(10, 27, 46, 0.25);
}
.calc-inputs {
  padding: clamp(28px, 4vw, 44px);
}
.calc-result {
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-field {
  margin-bottom: 24px;
}
.calc-field label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper-ink);
  margin-bottom: 12px;
}
.calc-field label .val {
  font-family: var(--mono);
  color: var(--green-deep);
}
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: var(--paper-2);
  outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-deep);
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(21, 168, 108, 0.5);
  transition: transform 0.15s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-deep);
  cursor: pointer;
  border: 4px solid #fff;
}
.calc-field .hint {
  font-size: 12.5px;
  color: var(--paper-muted);
  margin-top: 8px;
}
.calc-result .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.calc-result .big {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 600;
  line-height: 1;
  margin: 14px 0 4px;
  letter-spacing: -0.03em;
}
.calc-result .big small {
  font-size: 24px;
  color: var(--muted);
  font-family: var(--body);
}
.calc-result .sub {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 34ch;
}
.calc-equiv {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
}
.calc-equiv .eq .n {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-bright);
}
.calc-equiv .eq .t {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   COMPLIANCE / UAE
   ============================================================ */
.comp-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 5vw, 70px);
}
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--green), var(--blue));
  opacity: 0.4;
}
.tl-item {
  position: relative;
  padding-bottom: 34px;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 0px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 2.5px solid var(--green);
  box-shadow: 0 0 0 4px rgba(40, 199, 133, 0.12);
}
.tl-item .yr {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green-bright);
  letter-spacing: 0.06em;
}
.tl-item h4 {
  font-size: 18px;
  margin: 6px 0 7px;
}
.tl-item p {
  font-size: 14px;
  color: var(--ink-soft);
}
.frame-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.frame-chip {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
/* .frame-chip:hover {
  border-color: var(--green);
  transform: translateY(-3px);
} */
.frame-chip .fc-t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  color: var(--navy-card);
}
.frame-chip .fc-t .iso {
  width: 50px;
  clear: both;
  margin-bottom: 10px;
  width: 60px;
  clear: both;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px 0px 10px 0px;
  padding: 4px;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.2);
}
.frame-chip .fc-t .iso img {
  max-width: 100%;
  height: auto;
}
/* Text stand-in for standards with no logo asset — matches the tile footprint
   so the row of badges stays even. */
.frame-chip .fc-t .iso--text {
  display: grid;
  place-items: center;
  height: 42px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
}
.frame-chip p {
  font-size: 13px;
  color: var(--paper-ink);
  margin-top: 7px;
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line-paper);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line-paper);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--paper-ink);
}
.faq-q .ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-paper);
  display: grid;
  place-items: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.3s;
}
.faq-q .ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--paper-ink);
  stroke-width: 2;
  transition: stroke 0.25s;
}
.faq-item.open .faq-q .ico {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: rotate(135deg);
}
.faq-item.open .faq-q .ico svg {
  stroke: #fff;
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 50px 26px 0;
  font-size: 15.5px;
  color: var(--paper-muted);
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-band {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.riskfree {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  padding: 0;
}
.riskfree li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.riskfree svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-bright);
  flex: none;
}

/* Newsletter */
.newsletter {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding-block: clamp(44px, 6vw, 72px);
}
.news-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.news-copy h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 10px 0 8px;
}
.news-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 44ch;
}
.news-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}
.news-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--navy-950);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s;
}
.news-form input:focus {
  border-color: var(--green);
}
.news-form input::placeholder {
  color: var(--muted);
}
.cta-band .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(700px 380px at 50% 120%, rgba(40, 199, 133, 0.22), transparent 65%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-inner h2 {
  font-size: clamp(30px, 4.4vw, 52px);
}
.cta-inner .lead {
  margin: 22px auto 36px;
  color: var(--white);
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #eef5f5;
  border-top: 1px solid var(--line);
  padding-block: 64px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
.footer-brand .brand {
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 30ch;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--green);
}
/* Non-link footer entries (e.g. the office address) — match link metrics
   so the column rhythm stays even, without implying it is clickable. */
.footer-static {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .legal {
  display: flex;
  gap: 24px;
}
.footer-bottom .legal a {
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .legal a:hover {
  color: var(--green);
}

/* ============================================================
   GLOBE / NET-ZERO JOURNEY (scroll-driven)
   ============================================================ */
.globe-section {
  position: relative;
  height: 280vh;
  background: var(--navy-950);
}
.globe-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.globe-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 700px at 50% 50%, rgba(8, 24, 42, 0) 40%, var(--navy-950) 85%);
  z-index: 2;
  pointer-events: none;
}
#globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.globe-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.globe-cap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: min(760px, 88vw);
}
.globe-cap.top {
  /* top: clamp(70px, 12vh, 130px); */
  top: 50%;
  transform: translate(-50%, -50%);
}
.globe-cap.bottom {
  bottom: clamp(70px, 12vh, 120px);
}
.globe-cap .eyebrow {
  justify-content: center;
}
.globe-cap .eyebrow::before {
  display: none;
}
.globe-stage {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.globe-stage.on {
  opacity: 1;
  transform: none;
}
.globe-headline {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(44px, 8vw, 84px);
  margin-top: 14px;
}
.globe-headline em {
  font-style: normal;
  color: var(--green-bright);
}
.globe-sub {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  margin-top: 20px;
  max-width: 50ch;
  margin-inline: auto;
  text-wrap: pretty;
}
.globe-pin-label {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(6, 15, 26, 0.7);
  border: 1px solid rgba(79, 227, 167, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transform: translate(-50%, -180%);
  transition: opacity 0.4s ease;
}
.globe-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.globe-progress .seg {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--line-strong);
  transition: background 0.3s;
}
.globe-progress .seg.on {
  background: var(--green);
}

/* ============================================================
   STANDARDS / CERTIFICATIONS BAND
   ============================================================ */
.certs {
  background: #eef5f5;
  border-block: 1px solid var(--line);
}
.certs-inner {
  padding-block: clamp(40px, 6vw, 64px);
}
/* Auto-fit rather than a fixed column count: the number of standards changes
   over time, and a hardcoded 5 left a visible gap whenever the count didn't
   divide evenly. justify-content centres any partial final row. */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    background 0.3s;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.05);
}
/* .cert-badge:hover {
  border-color: var(--green);
} */
.cert-seal {
  width: 85px;
  height: 85px;
  display: grid;
  place-items: center;
  flex: none;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--green-bright);
  margin-bottom: 15px;
  background: var(--paper-card);
  padding: 10px;
  border-radius: 100%;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
}
.cert-seal img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cert-badge .cn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.15;
  color: var(--navy-card);
}
.cert-badge .cd {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================================
   PIPELINE — redesigned interactive flow
   ============================================================ */
.flow2 {
  margin-top: 60px;
  background: linear-gradient(165deg, var(--navy-850), var(--navy-950));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}
.flow2-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.flow2-head .t {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.flow2-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow2-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 33px;
  height: 2px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(77, 146, 240, 0.35), rgba(40, 199, 133, 0.5));
}
.flow2-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  background-size: 32% 100%;
  background-repeat: no-repeat;
  -webkit-mask: linear-gradient(#000, #000);
  mask: linear-gradient(#000, #000);
  animation: railFlow 3.2s linear infinite;
  opacity: 0.7;
}
@keyframes railFlow {
  0% {
    background-position: -40% 0;
  }
  100% {
    background-position: 140% 0;
  }
}
.flow2-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.flow2-dot {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
/* .flow2-node:hover .flow2-dot {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 18px 40px -18px rgba(40, 199, 133, 0.5);
} */
.flow2-dot svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
}
/* .flow2-node:nth-child(2) .flow2-dot svg {
  stroke: #74aefb;
}
.flow2-node:nth-child(3) .flow2-dot svg {
  stroke: #9ec3ff;
}
.flow2-node:nth-child(4) .flow2-dot svg {
  stroke: #4fe3a7;
}
.flow2-node:nth-child(5) .flow2-dot svg {
  stroke: #4fe3a7;
} */
.flow2-node h4 {
  font-size: 18px;
  margin-bottom: 7px;
  letter-spacing: 0px;
}
.flow2-node p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 10px 0px;
}
.flow2-node .chip {
  display: inline-block;
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}
.ind-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-card);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.ind-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.ind-card .ind-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ind-card image-slot {
  width: 100%;
  height: 100%;
}
.ind-card .ind-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 24, 42, 0.1) 0%, rgba(6, 15, 26, 0.55) 55%, rgba(6, 15, 26, 0.94) 100%);
}
.ind-card .ind-body {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.ind-card .ind-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(40, 199, 133, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.ind-card .ind-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 1.7;
}
.ind-card h3 {
  font-size: 17px;
  margin-bottom: 5px;
}
.ind-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============================================================
   AI ENGINE + CONNECTORS
   ============================================================ */
.ai-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.ai-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}
.ai-points li {
  display: flex;
  gap: 16px;
}
.ai-points .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--green);
  background: var(--green);
  border-radius: 9px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
}
.ai-points b {
  font-family: var(--display);
  font-size: 17px;
  display: block;
  margin-bottom: 3px;
  color: var(--green);
}
.ai-points span {
  font-size: 14px;
  color: var(--paper-muted);
  line-height: 1.55;
}
.connectors {
  background: var(--paper-card);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 70px -45px rgba(10, 27, 46, 0.25);
}
.connectors .ct {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-muted);
  margin-bottom: 20px;
}
.connector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line-paper);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.connector:hover {
  transform: translateY(-3px);
  border-color: var(--green-deep);
}
.connector .lg {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line-paper);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--paper-ink);
  flex: none;
}
.connector .cmeta b {
  font-family: var(--display);
  font-size: 14px;
  color: var(--paper-ink);
  display: block;
}
.connector .cmeta small {
  font-size: 11px;
  color: var(--paper-muted);
}
.connector-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--paper-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   ROI / VALUE STATS + TESTIMONIAL
   ============================================================ */
.roi-band {
  background: var(--navy-900);
  border-block: 1px solid var(--line);
}
.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.roi-stat {
  text-align: center;
  padding: 4px 0;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 100%;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.roi-stat .big {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  line-height: 1;
}
.roi-stat .big span {
  color: var(--green-bright);
}
.roi-stat .lbl {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.45;
}
.roi-divider {
  height: 1px;
  background: var(--line);
  margin: clamp(44px, 6vw, 64px) 0;
}
.quote {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.quote .mark {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0;
  color: var(--green);
  height: 30px;
  display: block;
}
.quote blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  text-wrap: balance;
}
.quote .by {
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
}
.quote .by b {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
}

/* image-slot base look */
image-slot {
  background: var(--navy-800);
}

/* FAQ category tabs */
.faq-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.faq-cat {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-paper);
  color: var(--paper-muted);
  transition: all 0.2s;
}
.faq-cat.active {
  background: var(--paper-ink);
  color: #fff;
  border-color: var(--paper-ink);
}
.faq-item[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  /* .certs-grid is auto-fit — it reflows on its own, no override needed. */
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flow2-track {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
  .flow2-rail {
    display: none;
  }
}
@media (max-width: 920px) {
  .ai-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .certs-grid,
  .ind-grid,
  .roi-grid,
  .connector-grid,
  .flow2-track {
    grid-template-columns: 1fr;
  }
  .globe-headline {
    font-size: clamp(36px, 12vw, 60px);
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}
.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js-anim .reveal.in {
  opacity: 1;
  transform: none;
}
.js-anim .reveal.d1 {
  transition-delay: 0.08s;
}
.js-anim .reveal.d2 {
  transition-delay: 0.16s;
}
.js-anim .reveal.d3 {
  transition-delay: 0.24s;
}
.js-anim .reveal.d4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pipeline {
    grid-template-columns: 1fr 1fr;
  }
  .pipe-step:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    order: -1;
    max-width: 540px;
  }
  .scope-layout,
  .dash-layout,
  .comp-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .calc-card {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-login {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .feat-grid,
  .pipeline,
  .scope-cards,
  .frame-grid,
  .donut-legend {
    grid-template-columns: 1fr;
  }
  .pipe-step::after {
    display: none !important;
  }
  .hero-floater {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .calc-equiv {
    flex-direction: column;
    gap: 14px;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-light);
}
.project-card.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s;
  filter: brightness(0.72) saturate(0.85);
}
.project-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(0.9);
}
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 70px 25px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}
.project-desc {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--paper-card);
  margin-bottom: 0px;
  line-height: 1.45;
  font-family: var(--body);
}
.project-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.project-arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 38px;
  height: 38px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--paper-card);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s,
    transform 0.3s;
  line-height: 33px;
  border-radius: 100%;
}
.project-card:hover .project-arrow {
  opacity: 1;
  transform: scale(1);
}

.trade-benefits {
  list-style: none;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}
.tb {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tb-icon {
  width: 40px;
  height: 40px;
  display: flex;
  border-right: 2px solid var(--muted);
  border-radius: 100%;
  padding: 0 10px 0 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--green);
  font-weight: 600;
  font-family: var(--display);
}
/* .tb-icon i {
  color: var(--green);
} */
.tb-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 3px;
  text-transform: capitalize;
  line-height: 1;
  font-family: var(--display);
}
.tb-desc {
  font-size: 14px;
  color: var(--paper-muted);
  line-height: 1.5;
  font-family: var(--body);
}

/* ============================================================
   FOOTER SOCIAL ICONS
   Sits under the brand blurb in the footer's first column. The
   footer is a light surface, so these use the paper ink ramp
   rather than the dark-section variables.
   ============================================================ */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-paper);
  background: #fff;
  color: var(--paper-muted);
  font-size: 15px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.footer-social a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ============================================================
   ADJACENT SECTIONS OF THE SAME SURFACE
   Two .paper sections in a row read as one panel, so their
   facing padding doubles into a large empty band. Collapse the
   seam: the second keeps its own rhythm but drops the duplicate
   top padding.
   ============================================================ */
.section-pad.paper + .section-pad.paper {
  padding-top: 0;
}
