:root {
  --ink: #0a201b;
  --ink-deep: #061712;
  --green: #0d3d32;
  --green-soft: #e9f1eb;
  --blue: #315ff4;
  --blue-dark: #2446bf;
  --lime: #c9f07b;
  --lime-dark: #a9d952;
  --paper: #f6f7f3;
  --white: #ffffff;
  --text: #16312a;
  --muted: #62736d;
  --line: #dce3dd;
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(9, 35, 29, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 750;
}

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

:focus-visible {
  outline: 3px solid #6d8cff;
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 118px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.eyebrow-light { color: var(--lime); }

.section-heading h2,
.pricing-intro h2,
.faq-heading h2,
.portal-copy h2,
.contact-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.centered {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}

.centered .eyebrow { justify-content: center; }
.centered > p:last-child { max-width: 630px; margin: 22px auto 0; color: var(--muted); font-size: 1.05rem; }

.button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 0.86rem; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--green); box-shadow: 0 12px 25px rgba(5, 31, 24, 0.18); }
.button-blue { background: var(--blue); color: var(--white); box-shadow: 0 12px 30px rgba(49, 95, 244, 0.22); }
.button-blue:hover { background: var(--blue-dark); box-shadow: 0 16px 38px rgba(49, 95, 244, 0.3); }
.button-lime { background: var(--lime); color: var(--ink); box-shadow: 0 15px 40px rgba(201, 240, 123, 0.17); }
.button-lime:hover { background: #d6fa8f; box-shadow: 0 18px 44px rgba(201, 240, 123, 0.24); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--lime); }
.button-outline-light { border-color: rgba(255, 255, 255, 0.34); color: var(--white); }
.button-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 248, 0.92);
  border-bottom: 1px solid rgba(16, 46, 38, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease;
}

.site-header.scrolled { box-shadow: 0 10px 34px rgba(7, 31, 24, 0.08); }

.nav-shell {
  width: min(1280px, calc(100% - 44px));
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.brand img { width: 38px; height: 38px; border-radius: 12px; }

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.portal-link {
  position: relative;
  color: #455b54;
  font-size: 0.88rem;
  font-weight: 650;
}

.desktop-nav a::after,
.portal-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.portal-link:hover::after { right: 0; }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.menu-toggle, .mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.34;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one { width: 620px; height: 620px; right: -150px; top: -130px; background: radial-gradient(circle, rgba(49,95,244,.25), rgba(49,95,244,0) 69%); }
.hero-glow-two { width: 540px; height: 540px; left: 20%; bottom: -390px; background: radial-gradient(circle, rgba(201,240,123,.12), rgba(201,240,123,0) 70%); }

.hero-layout {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: 76px;
  padding-top: 30px;
  padding-bottom: 40px;
}

.hero-copy { position: relative; z-index: 2; animation: hero-in 800ms cubic-bezier(.2,.8,.2,1) both; }
.hero-eyebrow { color: #dbe7df; }
.hero-eyebrow span { width: 24px; height: 1px; background: var(--lime); }

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6vw, 5.75rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
  font-weight: 620;
}

.hero h1 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lede { max-width: 650px; margin-bottom: 32px; color: #b5c8c1; font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.94rem; font-weight: 700; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link-light { color: #d9e5df; }

.hero-notes {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
  color: #91aaa0;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-notes span { display: flex; align-items: center; gap: 8px; }
.hero-notes i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(201,240,123,.1); }

.hero-visual { position: relative; z-index: 1; perspective: 1300px; animation: visual-in 900ms 120ms cubic-bezier(.2,.8,.2,1) both; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; pointer-events: none; animation: orbit 18s linear infinite; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 22px var(--lime); }
.orbit-one { width: 600px; height: 600px; left: -15px; top: -110px; }
.orbit-one::after { right: 68px; top: 75px; }
.orbit-two { width: 470px; height: 470px; right: -30px; bottom: -95px; animation-direction: reverse; animation-duration: 22s; }
.orbit-two::after { left: 35px; bottom: 90px; background: #6990ff; box-shadow: 0 0 22px #6990ff; }

.console-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: #f8faf7;
  color: var(--text);
  box-shadow: 0 45px 110px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.05) inset;
  transform: rotateY(-4deg) rotateX(1.5deg);
  transition: transform 220ms ease;
}

.console-topbar { height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; background: var(--white); border-bottom: 1px solid #e5eae5; }
.console-brand { display: flex; align-items: center; gap: 9px; font-size: 0.76rem; }
.mini-mark { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: var(--green); color: var(--lime); font-size: 0.65rem; font-weight: 900; letter-spacing: -.08em; }
.live-state { display: flex; align-items: center; gap: 7px; color: #4f6960; font-size: 0.7rem; font-weight: 750; }
.live-state i { width: 7px; height: 7px; border-radius: 50%; background: #56a86f; box-shadow: 0 0 0 5px rgba(86,168,111,.13); animation: pulse 2.2s ease-in-out infinite; }
.console-body { min-height: 430px; display: grid; grid-template-columns: 54px 1fr; }
.console-rail { padding-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 18px; background: #123c32; }
.console-rail span { width: 16px; height: 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 5px; }
.console-rail span.active { border-color: var(--lime); background: rgba(201,240,123,.18); box-shadow: 0 0 0 6px rgba(201,240,123,.08); }
.console-main { min-width: 0; padding: 25px 24px 24px; }
.console-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin-bottom: 22px; }
.console-heading div { display: grid; gap: 3px; }
.console-heading small { color: #8a9993; font-size: 0.63rem; font-weight: 800; letter-spacing: .14em; }
.console-heading strong { font-size: 1.06rem; }
.console-heading > span { color: #819189; font-size: 0.66rem; }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.signal-card { min-width: 0; padding: 15px 13px; border: 1px solid #dfe6e0; border-radius: 11px; background: var(--white); }
.signal-card small, .signal-card strong { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.signal-card small { color: #89958f; font-size: 0.63rem; }
.signal-card strong { margin: 5px 0 10px; font-size: 0.75rem; }
.status-pill { padding: 4px 6px; border-radius: 999px; background: #edf6eb; color: #4c7550; font-size: 0.59rem; font-weight: 750; }
.activity-panel { margin-top: 12px; border: 1px solid #dfe6e0; border-radius: 12px; background: var(--white); overflow: hidden; }
.activity-head { padding: 13px 14px 10px; display: flex; align-items: center; justify-content: space-between; font-size: 0.68rem; }
.activity-head span { color: var(--blue); font-size: 0.62rem; }
.activity-row { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; gap: 10px; align-items: center; padding: 12px 14px; border-top: 1px solid #edf0ec; animation: row-in 700ms both; }
.activity-row:nth-child(3) { animation-delay: 120ms; }
.activity-row:nth-child(4) { animation-delay: 240ms; }
.activity-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 7px; background: #edf4e9; color: #59794f; font-size: 0.62rem; font-weight: 900; }
.activity-icon.blue { background: #edf1ff; color: var(--blue); }
.activity-icon.gold { background: #faf2df; color: #9a7423; }
.activity-row div { min-width: 0; }
.activity-row strong, .activity-row small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.activity-row strong { font-size: 0.67rem; }
.activity-row small { margin-top: 2px; color: #89968f; font-size: 0.6rem; }
.source-tag { padding: 4px 6px; border-radius: 5px; background: #edf6eb; color: #587655; font-size: 0.55rem; font-weight: 750; }
.source-tag.manual { background: #eef1fd; color: var(--blue); }
.visual-caption { margin: 13px 18px 0 0; color: #758f85; text-align: right; font-size: 0.72rem; }

/* Connected system strip */
.system-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.strip-grid { min-height: 100px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 65px; }
.strip-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.strip-grid p span { display: block; color: var(--ink); font-size: 1.03rem; font-weight: 760; }
.strip-items { display: flex; align-items: center; justify-content: flex-end; gap: 19px; color: #4e635c; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.strip-items i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* Services */
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 15px; }
.service-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #c5d0c8; box-shadow: var(--shadow); }
.service-card-featured { background: #eef3ed; }
.service-card-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.service-number { position: absolute; right: 25px; top: 20px; color: #d4ddd7; font-size: 3.4rem; font-weight: 800; letter-spacing: -.08em; }
.service-card-dark .service-number { color: rgba(255,255,255,.1); }
.service-icon { width: 51px; height: 51px; margin-bottom: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--blue); color: var(--white); }
.service-card-featured .service-icon { background: var(--green); color: var(--lime); }
.service-card-dark .service-icon { background: var(--lime); color: var(--ink); }
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 490px; margin-bottom: 15px; font-size: 1.45rem; line-height: 1.18; letter-spacing: -.035em; }
.service-card > p { max-width: 570px; margin-bottom: 0; color: var(--muted); line-height: 1.72; }
.service-card-dark > p { color: #9eb3aa; }
.mini-list { margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.mini-list li { padding: 7px 10px; border: 1px solid #cedbd0; border-radius: 999px; color: #456057; font-size: 0.75rem; font-weight: 700; }
.card-link { position: absolute; left: 34px; bottom: 32px; display: inline-flex; align-items: center; gap: 9px; color: var(--lime); font-size: 0.84rem; font-weight: 750; }
.card-link span { transition: transform 180ms ease; }
.card-link:hover span { transform: translateX(5px); }

/* Landing page starter gallery */
.template-gallery {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.template-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.68) 1px, transparent 0);
  background-size: 34px 34px;
  mask-image: linear-gradient(115deg, transparent 0 18%, #000 70%, transparent);
}

.template-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -280px;
  top: -320px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}

.template-gallery .container { position: relative; }
.template-gallery .split-heading > p { color: #9db3aa; }
.template-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.template-card {
  --template-accent: #c9f07b;
  position: relative;
  min-height: 355px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.template-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -115px;
  top: -115px;
  border: 1px solid color-mix(in srgb, var(--template-accent) 38%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 37px rgba(255,255,255,.02), 0 0 0 74px rgba(255,255,255,.015);
}

.template-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--template-accent) 54%, transparent);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}

.template-card > span {
  width: max-content;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--template-accent) 45%, transparent);
  border-radius: 999px;
  color: var(--template-accent);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.template-card small {
  color: #879f95;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.template-card h3 {
  max-width: 320px;
  margin: 12px 0 23px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.template-card strong { color: var(--template-accent); font-size: .76rem; }
.template-tree { --template-accent: #9edc8d; }
.template-roofing { --template-accent: #a9bdd1; }
.template-hvac { --template-accent: #77d9e8; }
.template-restoration { --template-accent: #ffc766; }
.template-foundation { --template-accent: #c9b79d; }
.template-excavation { --template-accent: #cf9e62; }
.template-all { --template-accent: #ffffff; background: linear-gradient(145deg, rgba(49,95,244,.45), rgba(49,95,244,.13)); }

.template-disclaimer {
  max-width: 760px;
  margin: 27px 0 0;
  color: #839b91;
  font-size: .74rem;
  line-height: 1.65;
}

/* Process */
.process { position: relative; background: var(--white); }
.process-line { width: calc(100% - 25%); height: 1px; margin: 0 auto -19px; background: #d8e1da; }
.process-line span { display: block; width: 0; height: 100%; background: var(--blue); transition: width 1.4s ease; }
.process.is-visible .process-line span { width: 100%; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.process-grid article { padding-top: 0; text-align: center; }
.step-badge { width: 38px; height: 38px; margin: 0 auto 27px; display: grid; place-items: center; border: 7px solid var(--white); border-radius: 50%; background: var(--blue); color: var(--white); box-shadow: 0 0 0 1px var(--blue); font-size: 0.72rem; font-weight: 800; }
.process-grid small { color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: .14em; }
.process-grid h3 { margin: 11px 0 12px; font-size: 1.25rem; letter-spacing: -.025em; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.72; }

/* Portal */
.portal-section { position: relative; overflow: hidden; background: var(--green); color: var(--white); }
.portal-section::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.75) 1px, transparent 0); background-size: 32px 32px; mask-image: linear-gradient(90deg, transparent, #000 65%); }
.portal-orb { position: absolute; width: 620px; height: 620px; right: -280px; top: -260px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.portal-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; align-items: center; }
.portal-copy > p:not(.eyebrow) { max-width: 570px; margin: 25px 0 31px; color: #abc0b7; font-size: 1.05rem; line-height: 1.75; }
.portal-features { margin-bottom: 32px; display: grid; gap: 2px; }
.portal-features > div { padding: 16px 0; display: grid; grid-template-columns: 42px 1fr; gap: 13px; border-top: 1px solid var(--line-dark); }
.portal-features > div:last-child { border-bottom: 1px solid var(--line-dark); }
.portal-features > div > span { color: var(--lime); font-size: 0.73rem; font-weight: 800; letter-spacing: .08em; }
.portal-features p { margin: 0; color: #9fb6ad; font-size: 0.88rem; line-height: 1.55; }
.portal-features strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 0.97rem; }
.portal-window { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; background: #f7f9f6; box-shadow: 0 42px 95px rgba(0,0,0,.26); transform: rotate(1.5deg); }
.window-chrome { height: 48px; padding: 0 15px; display: flex; align-items: center; gap: 6px; background: var(--white); border-bottom: 1px solid #e0e7e1; }
.window-chrome > span { width: 8px; height: 8px; border-radius: 50%; background: #cbd4ce; }
.window-chrome > span:first-child { background: #ff8d83; }
.window-chrome > span:nth-child(2) { background: #efc864; }
.window-chrome > span:nth-child(3) { background: #79bf82; }
.window-chrome p { min-width: 190px; margin: 0 auto; padding: 5px 14px; border: 1px solid #e4e9e5; border-radius: 999px; color: #87948e; text-align: center; font-size: 0.62rem; }
.window-body { min-height: 435px; display: grid; grid-template-columns: 62px 1fr; color: var(--text); }
.window-body aside { padding: 19px 0; display: flex; flex-direction: column; align-items: center; gap: 18px; background: #123c32; }
.window-logo { width: 31px; height: 31px; margin-bottom: 9px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; color: var(--lime); font-size: 0.63rem; font-weight: 850; }
.window-body aside > span { width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 4px; }
.window-body aside > span.selected { border-color: var(--lime); background: rgba(201,240,123,.18); }
.window-content { min-width: 0; padding: 25px; }
.window-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 20px; }
.window-title p { margin: 0; display: grid; gap: 2px; }
.window-title small { color: #8a9892; font-size: 0.58rem; font-weight: 800; letter-spacing: .14em; }
.window-title strong { font-size: 0.93rem; }
.window-title > span { color: #71847b; font-size: 0.6rem; }
.window-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.window-metrics div { padding: 13px; border: 1px solid #dee5df; border-radius: 9px; background: var(--white); }
.window-metrics small, .window-metrics strong { display: block; }
.window-metrics small { color: #83918b; font-size: 0.57rem; }
.window-metrics strong { margin-top: 5px; font-size: 0.7rem; }
.window-feed { margin-top: 13px; border: 1px solid #dee5df; border-radius: 10px; background: var(--white); overflow: hidden; }
.window-feed > p { margin: 0; padding: 12px 14px; display: flex; justify-content: space-between; border-bottom: 1px solid #e8ede9; color: #6e7e77; font-size: 0.59rem; font-weight: 800; letter-spacing: .08em; }
.window-feed > p span { color: var(--blue); letter-spacing: 0; }
.window-feed > div { padding: 12px 14px; display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid #edf0ee; }
.window-feed > div:last-child { border: 0; }
.feed-dot { width: 8px; height: 8px; border-radius: 50%; }
.feed-dot.green { background: #69ad72; }
.feed-dot.blue { background: #6686f4; }
.feed-dot.gold { background: #d8ad53; }
.window-feed span { min-width: 0; }
.window-feed strong, .window-feed small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.window-feed strong { font-size: 0.66rem; }
.window-feed small { margin-top: 2px; color: #8b9993; font-size: 0.58rem; }
.window-feed em { padding: 4px 6px; border-radius: 5px; background: #edf3eb; color: #668060; font-size: 0.53rem; font-style: normal; }

/* Difference */
.difference { background: var(--paper); }
.difference-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.difference-grid article { min-height: 300px; padding: 30px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.3); transition: background 200ms ease, transform 200ms ease; }
.difference-grid article:hover { background: var(--white); transform: translateY(-4px); box-shadow: 0 22px 50px rgba(16,49,41,.08); }
.difference-grid article > span { display: block; min-height: 72px; color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.difference-grid h3 { margin-bottom: 12px; font-size: 1.16rem; line-height: 1.25; letter-spacing: -.025em; }
.difference-grid p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* Pricing */
.pricing { background: #eef2ed; }
.pricing-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 64px; align-items: start; }
.pricing-intro { position: sticky; top: 120px; }
.pricing-intro > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 1.03rem; line-height: 1.75; }
.fit-note { margin-top: 34px; padding: 20px; border: 1px solid #d4ddd5; border-radius: 15px; background: rgba(255,255,255,.52); }
.fit-note span { display: block; margin-bottom: 8px; color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fit-note p { margin: 0; color: #536960; font-size: 0.9rem; line-height: 1.62; }
.price-card { overflow: hidden; border: 1px solid #ccd6ce; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.price-card-head { padding: 29px 30px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--line); }
.price-card-head p { margin-bottom: 6px; color: var(--blue); font-size: 0.7rem; font-weight: 850; letter-spacing: .13em; }
.price-card-head h3 { margin: 0; font-size: 1.38rem; letter-spacing: -.03em; }
.price-card-head > span { padding: 7px 11px; border-radius: 999px; background: #edf2ff; color: var(--blue); font-size: 0.7rem; font-weight: 800; white-space: nowrap; }
.price-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.price-row > div { padding: 32px 30px; }
.price-row > div:first-child { border-right: 1px solid var(--line); }
.price-row span { font-size: 3.6rem; line-height: 1; letter-spacing: -.07em; font-weight: 760; }
.price-row small { color: var(--blue); font-size: 0.88rem; font-weight: 800; }
.price-row p { margin: 15px 0 0; color: var(--muted); font-size: 0.87rem; line-height: 1.65; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; }
.included-grid > div { padding: 28px 30px; }
.included-grid > div:first-child { border-right: 1px solid var(--line); }
.included-grid h4 { margin-bottom: 17px; font-size: 0.9rem; }
.check-list { margin: 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #53665f; font-size: 0.84rem; line-height: 1.45; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: #e8f3df; color: #4f8154; font-size: 0.67rem; font-weight: 900; }
.investment-box { margin: 0 30px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #d6dfd8; border-radius: 13px; background: #f1f4ef; }
.investment-box div { min-width: 0; padding: 18px; border-right: 1px solid #d6dfd8; }
.investment-box div:last-child { border: 0; }
.investment-box small, .investment-box strong { display: block; }
.investment-box small { min-height: 34px; color: #788a81; font-size: 0.59rem; line-height: 1.4; letter-spacing: .1em; font-weight: 800; }
.investment-box strong { margin-top: 8px; font-size: 0.91rem; }
.price-footer { padding: 27px 30px 30px; display: flex; align-items: center; gap: 24px; }
.price-footer p { flex: 1; margin: 0; color: #718179; font-size: 0.77rem; line-height: 1.6; }
.price-footer .button { flex-shrink: 0; }

/* FAQ */
.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > p:last-child { margin: 25px 0 0; color: var(--muted); line-height: 1.72; }
.faq-heading a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(49,95,244,.35); text-underline-offset: 3px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 52px 25px 0; cursor: pointer; list-style: none; font-weight: 720; line-height: 1.4; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 4px; top: 50%; width: 24px; height: 24px; transform: translateY(-50%); border: 1px solid #cfd9d1; border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 6px; right: 6px; top: 11px; height: 1px; background: var(--ink); transition: transform 180ms ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; margin: -5px 55px 24px 0; color: var(--muted); line-height: 1.75; }

/* Contact + footer */
.contact { position: relative; overflow: hidden; padding: 105px 0; background: var(--blue); color: var(--white); }
.contact-pattern { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.14) 49% 51%, transparent 52% 100%); background-size: 60px 60px; mask-image: linear-gradient(90deg, transparent, #000); }
.contact-inner { position: relative; max-width: 900px; margin-inline: auto; text-align: center; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner > p:not(.eyebrow) { max-width: 680px; margin: 25px auto 31px; color: #dce4ff; font-size: 1.05rem; line-height: 1.72; }
.contact-actions { display: flex; justify-content: center; gap: 13px; flex-wrap: wrap; }
.site-footer { padding: 70px 0 24px; background: var(--ink-deep); color: #9fb2aa; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .75fr .75fr 1fr; gap: 60px; padding-bottom: 55px; }
.brand-light { color: var(--white); }
.footer-brand p { max-width: 350px; margin: 18px 0 0; line-height: 1.7; }
.footer-grid h3 { margin-bottom: 18px; color: var(--white); font-size: 0.83rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { width: max-content; margin-bottom: 11px; display: block; font-size: 0.88rem; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--lime); }
.footer-bottom { padding-top: 23px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-dark); font-size: 0.75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; align-items: center; gap: 22px; }

/* Legal pages */
.legal-page { background: #f7f8f5; }
.legal-header { border-bottom: 1px solid rgba(16, 46, 38, 0.1); background: rgba(250, 251, 248, 0.96); }
.legal-nav { width: min(1180px, calc(100% - 48px)); height: 76px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-back { color: var(--muted); font-size: 0.9rem; font-weight: 720; }
.legal-back:hover { color: var(--blue); }
.legal-main { padding: 78px 0 110px; }
.legal-shell { width: min(840px, calc(100% - 48px)); margin-inline: auto; }
.legal-intro { margin-bottom: 46px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-intro .eyebrow { margin-bottom: 14px; }
.legal-intro h1 { max-width: 760px; margin-bottom: 18px; color: var(--ink); font-size: clamp(2.7rem, 7vw, 5.2rem); font-weight: 650; letter-spacing: -0.06em; line-height: 0.98; }
.legal-summary { max-width: 720px; margin-bottom: 18px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.legal-date { margin: 0; color: var(--green); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-content { display: grid; gap: 38px; }
.legal-content section { scroll-margin-top: 24px; }
.legal-content h2 { margin-bottom: 13px; color: var(--ink); font-size: clamp(1.45rem, 3vw, 1.95rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.2; }
.legal-content h3 { margin: 23px 0 8px; color: var(--ink); font-size: 1.02rem; }
.legal-content p, .legal-content li { color: #3f5650; line-height: 1.78; }
.legal-content p { margin-bottom: 13px; }
.legal-content ul { margin: 12px 0 0; padding-left: 24px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-note { padding: 22px 24px; border: 1px solid #d8e3d9; border-radius: 16px; background: var(--green-soft); }
.legal-contact { padding: 30px; border-radius: 20px; background: var(--ink); color: var(--white); }
.legal-contact h2, .legal-contact p { color: inherit; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact a { color: var(--lime); }
.legal-footer { padding: 30px 0; background: var(--ink-deep); color: #9fb2aa; }
.legal-footer-inner { width: min(1180px, calc(100% - 48px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 0.8rem; }
.legal-footer-inner p { margin: 0; }
.legal-footer-links { display: flex; gap: 22px; }
.legal-footer a:hover { color: var(--white); }

/* Reveal and motion */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.js [data-reveal].revealed { opacity: 1; transform: translateY(0); }
.service-grid [data-reveal]:nth-child(2), .difference-grid [data-reveal]:nth-child(2), .process-grid [data-reveal]:nth-child(2) { transition-delay: 90ms; }
.service-grid [data-reveal]:nth-child(3), .difference-grid [data-reveal]:nth-child(3), .process-grid [data-reveal]:nth-child(3) { transition-delay: 180ms; }
.service-grid [data-reveal]:nth-child(4), .difference-grid [data-reveal]:nth-child(4) { transition-delay: 270ms; }

@keyframes hero-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes visual-in { from { opacity: 0; transform: translateY(28px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(86,168,111,.12); } 50% { box-shadow: 0 0 0 8px rgba(86,168,111,0); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes row-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1100px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: .82rem; }
  .hero-layout { grid-template-columns: .88fr 1.12fr; gap: 42px; }
  .portal-layout { gap: 48px; }
  .pricing-layout { grid-template-columns: .55fr 1.45fr; gap: 42px; }
  .difference-grid { grid-template-columns: 1fr 1fr; }
  .difference-grid article { min-height: 250px; }
  .template-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .section { padding: 92px 0; }
  .desktop-nav, .nav-actions .portal-link { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-toggle { width: 42px; height: 42px; margin-left: -8px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
  .menu-toggle span { width: 17px; height: 1.5px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 76px 0 auto; max-height: calc(100vh - 76px); overflow: auto; padding: 25px 24px 32px; display: grid; gap: 4px; border-top: 1px solid var(--line); background: #fafbf8; box-shadow: 0 25px 55px rgba(7,31,24,.15); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid #e6ebe7; font-size: 1.02rem; font-weight: 700; }
  .mobile-menu .button { margin-top: 15px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 65px; padding-top: 95px; padding-bottom: 90px; }
  .hero-copy { max-width: 730px; }
  .hero-visual { width: min(690px, 100%); margin-inline: auto; }
  .strip-grid { padding: 24px 0; grid-template-columns: 1fr; gap: 15px; }
  .strip-items { justify-content: flex-start; flex-wrap: wrap; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { max-width: 650px; }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-copy { max-width: 720px; }
  .portal-window { width: min(720px,100%); margin-inline: auto; }
  .pricing-layout, .faq-layout { grid-template-columns: 1fr; }
  .pricing-intro, .faq-heading { position: static; }
  .pricing-intro { max-width: 720px; }
  .faq-layout { gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 76px 0; }
  .nav-shell { width: calc(100% - 28px); height: 70px; }
  .brand img { width: 34px; height: 34px; }
  .nav-actions .button { display: none; }
  .menu-toggle { margin-left: auto; }
  .mobile-menu { inset: 70px 0 auto; }
  .hero-layout { padding-top: 76px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.25rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-notes { gap: 13px 18px; }
  .console-card { transform: none !important; }
  .console-body { min-height: 380px; grid-template-columns: 42px 1fr; }
  .console-main { padding: 18px 14px; }
  .console-heading > span { display: none; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-card:last-child { display: none; }
  .activity-row { grid-template-columns: 26px minmax(0,1fr); }
  .source-tag { display: none; }
  .visual-caption { margin-right: 4px; }
  .strip-items { gap: 11px; }
  .strip-items i { display: none; }
  .strip-items span { padding: 6px 9px; border-radius: 999px; background: #f0f4ef; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; padding: 27px; }
  .service-icon { margin-bottom: 42px; }
  .card-link { left: 27px; bottom: 27px; }
  .template-grid { grid-template-columns: 1fr; }
  .template-card { min-height: 300px; }
  .process-line { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid article { position: relative; padding: 0 0 48px 60px; text-align: left; }
  .process-grid article:not(:last-child)::before { content: ""; position: absolute; left: 18px; top: 39px; bottom: 0; width: 1px; background: #d8e1da; }
  .step-badge { position: absolute; left: 0; top: 0; margin: 0; }
  .portal-layout { gap: 52px; }
  .window-body { min-height: 400px; grid-template-columns: 44px 1fr; }
  .window-content { padding: 17px 13px; }
  .window-metrics { grid-template-columns: 1fr 1fr; }
  .window-metrics > div:last-child { display: none; }
  .window-title > span { display: none; }
  .window-feed em { display: none; }
  .window-feed > div { grid-template-columns: 8px 1fr; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid article { min-height: 0; }
  .difference-grid article > span { min-height: 45px; }
  .price-card-head { align-items: flex-start; flex-direction: column; }
  .price-row, .included-grid { grid-template-columns: 1fr; }
  .price-row > div:first-child, .included-grid > div:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .investment-box { grid-template-columns: 1fr; }
  .investment-box div { border-right: 0; border-bottom: 1px solid #d6dfd8; }
  .investment-box small { min-height: auto; }
  .price-footer { align-items: flex-start; flex-direction: column; }
  .price-footer .button { width: 100%; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-legal { flex-wrap: wrap; gap: 10px 18px; }
  .legal-main { padding: 58px 0 82px; }
  .legal-shell, .legal-nav, .legal-footer-inner { width: min(100% - 36px, 840px); }
  .legal-footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.9rem; }
  .hero-notes { display: grid; }
  .console-topbar { padding-inline: 12px; }
  .console-brand strong { display: none; }
  .console-heading strong { font-size: .92rem; }
  .activity-row { padding-inline: 10px; }
  .price-row span { font-size: 3.15rem; }
  .investment-box { margin-inline: 20px; }
  .price-card-head, .price-row > div, .included-grid > div, .price-footer { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@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; }
  [data-reveal] { opacity: 1; transform: none; }
  .process-line span { width: 100%; }
}
