:root {
  --bg: #050814;
  --bg-2: #07111f;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-solid: #0f172a;
  --panel-2: #111c31;
  --card: rgba(18, 28, 49, 0.78);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.32);
  --text: #f8fafc;
  --muted: #9aa8bd;
  --muted-2: #64748b;
  --brand: #61e7d4;
  --brand-2: #5ea3ff;
  --brand-3: #8b5cf6;
  --success: #24d18f;
  --warning: #ffcf66;
  --danger: #ff677d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(97, 231, 212, 0.16), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(94, 163, 255, 0.17), transparent 32%),
    linear-gradient(180deg, var(--bg), #07101c 48%, #040712);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  transform: translateX(-100%);
  animation: sheen 12s infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes sheen { 0%, 75% { transform: translateX(-100%);} 100% { transform: translateX(100%);} }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(22px);
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { width: 236px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(97, 231, 212, 0.38); background: rgba(20, 32, 55, 0.86); }
.btn.primary {
  color: #04111a;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(94, 163, 255, 0.22);
}
.btn.primary:hover { box-shadow: 0 24px 56px rgba(97, 231, 212, 0.24); }
.btn.ghost { background: transparent; }
.btn.block { width: 100%; }

.hero {
  position: relative;
  padding: 88px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 48px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(97, 231, 212, 0.25);
  border-radius: 999px;
  background: rgba(97, 231, 212, 0.08);
  color: #b8fff7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(36, 209, 143, 0.12);
}
h1 {
  margin: 18px 0 18px;
  max-width: 760px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.91;
  letter-spacing: -0.07em;
}
.gradient-text {
  background: linear-gradient(135deg, #ffffff, #b6d8ff 42%, #74f8e8 72%, #d0c3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 665px;
  color: #bfccde;
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
}
.proof-card {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.48);
}
.proof-card strong { display: block; font-size: 22px; letter-spacing: -0.03em; }
.proof-card span { color: var(--muted); font-size: 12px; font-weight: 700; }

.browser-shell {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(8, 14, 27, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.browser-bar {
  height: 46px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
}
.light { width: 10px; height: 10px; border-radius: 50%; background: rgba(148, 163, 184, 0.35); }
.light:nth-child(1) { background: #ff6578; }
.light:nth-child(2) { background: #ffca5e; }
.light:nth-child(3) { background: #3be38d; }
.browser-url {
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  width: 100%;
  background: rgba(2, 6, 23, 0.46);
}
.command-panel { padding: 20px; }
.command-head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.command-head h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.command-head p { margin: 0; color: var(--muted); font-size: 13px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(36, 209, 143, 0.1);
  border: 1px solid rgba(36, 209, 143, 0.2);
  color: #b9ffe6;
  font-size: 12px; font-weight: 900;
  white-space: nowrap;
}
.status-pill::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--success); }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.62);
}
.metric label { color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.metric strong { display:block; margin-top: 7px; font-size: 24px; letter-spacing: -0.04em; }
.metric small { color: var(--muted-2); font-weight: 800; }
.split-dashboard { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.panel-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(11, 18, 32, 0.72);
}
.panel-card h4 { margin: 0 0 12px; font-size: 13px; letter-spacing: .01em; }
.risk-item { display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center; padding: 11px 0; border-top: 1px solid rgba(148, 163, 184, 0.12); }
.risk-item:first-of-type { border-top: 0; padding-top: 0; }
.risk-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 0 5px rgba(255, 207, 102, 0.12); }
.risk-dot.danger { background: var(--danger); box-shadow: 0 0 0 5px rgba(255, 103, 125, 0.12); }
.risk-dot.good { background: var(--success); box-shadow: 0 0 0 5px rgba(36, 209, 143, 0.12); }
.risk-item p { margin: 0; color: var(--text); font-size: 13px; font-weight: 800; }
.risk-item span { color: var(--muted); font-size: 12px; }
.risk-item strong { font-size: 12px; }
.ai-card { background: linear-gradient(160deg, rgba(97, 231, 212, 0.1), rgba(139, 92, 246, 0.09)); }
.ai-card p { color: #dce7f7; font-size: 13px; line-height: 1.55; margin: 0; }
.ai-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.tag { padding: 6px 8px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); color: #cbd5e1; font-size: 11px; font-weight: 900; }

.section { padding: 84px 0; }
.section.tight { padding: 54px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-head.center { display: block; text-align: center; max-width: 770px; margin-inline: auto; margin-bottom: 36px; }
.eyebrow { color: var(--brand); font-size: 12px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
h2 { margin: 10px 0 0; font-size: clamp(34px, 5vw, 58px); line-height: .98; letter-spacing: -0.055em; }
.section-desc { color: var(--muted); font-size: 17px; line-height: 1.55; max-width: 640px; margin: 12px 0 0; }

.logo-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  overflow: hidden;
}
.logo-strip div { background: rgba(15,23,42,.74); min-height: 86px; display:flex; align-items:center; justify-content:center; color: var(--muted); font-weight: 900; text-align:center; padding: 14px; }
.logo-strip div:first-child { justify-content:flex-start; text-align:left; color: var(--text); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card {
  position: relative;
  min-height: 248px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,23,42,.75), rgba(15,23,42,.43));
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute; inset: auto -40px -60px auto; width: 170px; height: 170px; border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 231, 212, .14), transparent 68%);
}
.icon {
  width: 46px; height: 46px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(97, 231, 212, .22);
  background: rgba(97,231,212,.08);
  color: var(--brand);
  font-weight: 950;
  margin-bottom: 18px;
}
.feature-card h3 { margin: 0 0 10px; letter-spacing: -0.02em; font-size: 21px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.58; }
.feature-meta { position:absolute; left:24px; bottom:24px; color: var(--muted-2); font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }

.product-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 16px; align-items: stretch; }
.product-copy { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(15,23,42,.62); }
.product-copy h3 { margin: 0 0 14px; font-size: 30px; letter-spacing:-.04em; }
.product-copy p { color: var(--muted); line-height:1.62; margin: 0 0 18px; }
.bullet-list { display:grid; gap:10px; margin:0; padding:0; list-style:none; }
.bullet-list li { display:flex; gap:10px; align-items:flex-start; color:#dbe5f4; font-weight:750; }
.bullet-list li::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--brand); margin-top:7px; box-shadow:0 0 0 5px rgba(97,231,212,.1); flex:0 0 auto; }
.analysis-lab { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(9,16,30,.8); padding: 22px; box-shadow: var(--shadow); }
.lab-top { display:flex; justify-content:space-between; gap:14px; align-items:center; margin-bottom:16px; }
.lab-top h4 { margin:0; font-size:15px; }
.lab-map {
  height: 290px; border-radius: 20px; border:1px solid rgba(148,163,184,.18); overflow:hidden; position:relative;
  background:
    linear-gradient(35deg, transparent 46%, rgba(97,231,212,.16) 47% 50%, transparent 51%),
    linear-gradient(125deg, transparent 30%, rgba(94,163,255,.11) 31% 34%, transparent 35%),
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.18), transparent 9%),
    linear-gradient(120deg, #172033, #0a1326);
}
.lab-map::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mass {
  position:absolute; border:1px solid rgba(97,231,212,.45); background: linear-gradient(180deg, rgba(97,231,212,.35), rgba(94,163,255,.12));
  box-shadow: 0 28px 50px rgba(0,0,0,.32); transform: skewY(-7deg) rotate(-2deg);
}
.mass.a { left:72px; top:58px; width:88px; height:160px; }
.mass.b { left:180px; top:98px; width:136px; height:98px; }
.mass.c { right:90px; top:70px; width:74px; height:178px; }
.lab-stats { display:grid; grid-template-columns: repeat(4,1fr); gap:10px; margin-top:12px; }
.lab-stat { border:1px solid var(--line); border-radius:16px; background:rgba(15,23,42,.62); padding:12px; }
.lab-stat span { color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.07em; font-weight:900; }
.lab-stat strong { display:block; margin-top:6px; font-size:20px; letter-spacing:-.03em; }

.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.table-card { border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background: rgba(15,23,42,.66); }
.table-card header { display:flex; justify-content:space-between; align-items:center; padding:18px 20px; border-bottom:1px solid var(--line); }
.table-card header h3 { margin:0; font-size:16px; }
.table { width:100%; border-collapse:collapse; }
.table th, .table td { text-align:left; padding:14px 20px; border-bottom:1px solid rgba(148,163,184,.11); font-size:13px; }
.table th { color:var(--muted); font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.table td { color:#dbe5f4; font-weight:700; }
.badge { display:inline-flex; align-items:center; justify-content:center; padding:5px 8px; border-radius:999px; border:1px solid var(--line); color:#dce7f7; background:rgba(255,255,255,.05); font-size:11px; font-weight:950; white-space:nowrap; }
.badge.green { color:#b9ffe6; border-color:rgba(36,209,143,.26); background:rgba(36,209,143,.1); }
.badge.yellow { color:#fff0be; border-color:rgba(255,207,102,.28); background:rgba(255,207,102,.1); }
.badge.red { color:#ffd0d8; border-color:rgba(255,103,125,.28); background:rgba(255,103,125,.1); }
.badge.blue { color:#cfe5ff; border-color:rgba(94,163,255,.28); background:rgba(94,163,255,.1); }

.roofing-mode { display:grid; grid-template-columns: .86fr 1.14fr; gap:16px; }
.scope-card { padding:24px; border-radius:var(--radius); border:1px solid var(--line); background:linear-gradient(180deg, rgba(15,23,42,.82), rgba(15,23,42,.48)); }
.scope-card h3 { margin:0 0 14px; font-size:27px; letter-spacing:-.035em; }
.scope-card p { color:var(--muted); line-height:1.58; }
.scope-metrics { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:20px; }
.scope-metrics div { border:1px solid var(--line); background:rgba(2,6,23,.22); border-radius:16px; padding:14px; }
.scope-metrics strong { display:block; font-size:24px; }
.scope-metrics span { color:var(--muted); font-size:12px; font-weight:900; }
.takeoff-board { border:1px solid var(--line); border-radius:var(--radius); background:rgba(9,16,30,.76); padding:18px; }
.takeoff-row { display:grid; grid-template-columns: 1.3fr .5fr .5fr .5fr; gap:10px; padding:13px 0; border-bottom:1px solid rgba(148,163,184,.12); align-items:center; }
.takeoff-row.head { color:var(--muted); text-transform:uppercase; letter-spacing:.08em; font-size:11px; font-weight:950; }
.takeoff-row:not(.head) { color:#e2e8f0; font-weight:800; font-size:13px; }
.takeoff-row:last-child { border-bottom:0; }

.console-wrap { border:1px solid rgba(148,163,184,.2); border-radius:32px; background:rgba(5,10,22,.84); box-shadow: var(--shadow); overflow:hidden; }
.console-header { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:18px; border-bottom:1px solid var(--line); }
.console-brand { display:flex; align-items:center; gap:12px; }
.console-brand img { width:38px; }
.console-brand strong { display:block; }
.console-brand span { color:var(--muted); font-size:12px; font-weight:800; }
.console-body { display:grid; grid-template-columns:250px 1fr; min-height:720px; }
.side-nav { border-right:1px solid var(--line); padding:14px; background:rgba(8,14,27,.68); }
.side-nav button {
  width:100%; border:0; background:transparent; color:var(--muted); border-radius:14px; padding:12px 13px; text-align:left; cursor:pointer; display:flex; align-items:center; justify-content:space-between; font-weight:850; margin-bottom:5px;
}
.side-nav button:hover { color:var(--text); background:rgba(148,163,184,.07); }
.side-nav button.active { color:#04111a; background:linear-gradient(135deg, var(--brand), var(--brand-2)); }
.side-nav small { opacity:.7; font-weight:950; }
.app-main { padding:20px; }
.app-top { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; margin-bottom:16px; }
.app-top h3 { margin:0 0 8px; font-size:25px; letter-spacing:-.035em; }
.app-top p { margin:0; color:var(--muted); }
.app-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-bottom:12px; }
.app-stat { border:1px solid var(--line); border-radius:18px; background:rgba(15,23,42,.6); padding:16px; }
.app-stat span { color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.08em; font-weight:950; }
.app-stat strong { display:block; font-size:27px; margin-top:7px; letter-spacing:-.04em; }
.app-stat em { font-style:normal; color:var(--muted-2); font-size:12px; font-weight:800; }
.module-layout { display:grid; grid-template-columns: 1.25fr .75fr; gap:12px; }
.canvas-card, .list-card { border:1px solid var(--line); border-radius:20px; background:rgba(15,23,42,.58); padding:16px; }
.canvas-card h4, .list-card h4 { margin:0 0 12px; }
.chart-bars { display:grid; gap:11px; margin-top:12px; }
.bar-line { display:grid; grid-template-columns:112px 1fr 42px; align-items:center; gap:10px; font-size:12px; color:var(--muted); font-weight:900; }
.bar-track { height:10px; border-radius:999px; background:rgba(148,163,184,.13); overflow:hidden; }
.bar-fill { height:100%; border-radius:999px; background:linear-gradient(90deg, var(--brand), var(--brand-2)); }
.feed { display:grid; gap:9px; }
.feed-item { border:1px solid rgba(148,163,184,.14); border-radius:16px; padding:12px; background:rgba(2,6,23,.2); }
.feed-item strong { display:block; font-size:13px; }
.feed-item span { color:var(--muted); font-size:12px; }

.calc-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:10px; }
.input-group label { display:block; color:var(--muted); font-size:11px; font-weight:950; text-transform:uppercase; letter-spacing:.08em; margin-bottom:6px; }
.input-group input, .input-group select, .input-group textarea {
  width:100%; border:1px solid var(--line); border-radius:14px; padding:12px; color:var(--text); background:rgba(2,6,23,.34); outline:none;
}
.input-group input:focus, .input-group textarea:focus { border-color:rgba(97,231,212,.52); box-shadow:0 0 0 4px rgba(97,231,212,.08); }
.calc-result { margin-top:12px; border-radius:18px; padding:16px; background:linear-gradient(135deg, rgba(97,231,212,.1), rgba(94,163,255,.08)); border:1px solid rgba(97,231,212,.18); }
.calc-result strong { font-size:25px; letter-spacing:-.035em; }

.pricing {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.price-card {
  position:relative; padding:26px; border-radius:28px; border:1px solid var(--line); background:linear-gradient(180deg, rgba(15,23,42,.72), rgba(15,23,42,.45));
}
.price-card.featured { border-color:rgba(97,231,212,.42); box-shadow: 0 28px 80px rgba(97,231,212,.1); transform: translateY(-8px); }
.ribbon { position:absolute; top:16px; right:16px; }
.price-card h3 { margin:0 0 8px; font-size:24px; }
.price-card p { color:var(--muted); line-height:1.5; min-height:70px; }
.price { margin:24px 0 4px; font-size:45px; letter-spacing:-.06em; font-weight:950; }
.price small { color:var(--muted); font-size:14px; letter-spacing:0; font-weight:800; }
.price-card ul { margin:22px 0; padding:0; list-style:none; display:grid; gap:12px; }
.price-card li { color:#e2e8f0; display:flex; gap:10px; font-weight:750; }
.price-card li::before { content:"✓"; color:var(--brand); font-weight:950; }
.price-note { margin-top:20px; border:1px solid rgba(255,207,102,.22); background:rgba(255,207,102,.08); border-radius:20px; padding:18px; color:#fff2c4; display:flex; justify-content:space-between; gap:18px; align-items:center; }
.price-toggle { display:inline-flex; gap:3px; border:1px solid var(--line); border-radius:999px; padding:4px; background:rgba(15,23,42,.6); }
.price-toggle button { border:0; border-radius:999px; padding:9px 13px; color:var(--muted); background:transparent; font-weight:900; cursor:pointer; }
.price-toggle button.active { color:#04111a; background:linear-gradient(135deg,var(--brand),var(--brand-2)); }

.compare-grid { display:grid; grid-template-columns: repeat(4,1fr); border:1px solid var(--line); border-radius:24px; overflow:hidden; background:var(--line); gap:1px; }
.compare-cell { background:rgba(15,23,42,.75); padding:18px; min-height:72px; }
.compare-cell.head { color:var(--text); font-weight:950; }
.compare-cell { color:var(--muted); font-weight:750; }
.compare-cell.good { color:#b9ffe6; }
.compare-cell.warn { color:#fff0be; }
.compare-cell strong { color:var(--text); }

.final-cta { text-align:center; padding:72px 0 94px; }
.cta-box { border:1px solid rgba(97,231,212,.22); border-radius:34px; background:linear-gradient(135deg, rgba(97,231,212,.1), rgba(94,163,255,.08), rgba(139,92,246,.09)); padding:48px 24px; box-shadow:var(--shadow); }
.cta-box h2 { margin-top:0; }
.cta-box p { color:var(--muted); font-size:18px; max-width:690px; margin:16px auto 26px; line-height:1.55; }

.footer { border-top:1px solid var(--line); padding:30px 0; color:var(--muted); }
.footer-inner { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.footer img { width:190px; opacity:.8; }
.footer-links { display:flex; gap:18px; font-size:13px; font-weight:800; }

.reveal { opacity:0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity:1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links { display:none; }
  .mobile-menu { display:inline-flex; }
  .hero-grid, .product-grid, .workflow, .roofing-mode, .module-layout { grid-template-columns: 1fr; }
  .hero-proof, .lab-stats, .pricing, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .console-body { grid-template-columns: 1fr; }
  .side-nav { border-right:0; border-bottom:1px solid var(--line); display:grid; grid-template-columns: repeat(2,1fr); gap:4px; }
  .side-nav button { margin:0; }
  .compare-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .nav-inner { height:68px; }
  .logo-link img { width:205px; }
  .nav-actions .btn.ghost { display:none; }
  .hero { padding-top:54px; }
  .hero-grid { gap:30px; }
  .hero-proof, .lab-stats, .metrics-row, .split-dashboard, .pricing, .feature-grid, .app-grid, .calc-grid, .scope-metrics { grid-template-columns: 1fr; }
  .section { padding:58px 0; }
  .section-head { display:block; }
  .takeoff-row { grid-template-columns: 1fr; gap:4px; }
  .price-note, .footer-inner { flex-direction:column; align-items:flex-start; }
  .compare-grid { grid-template-columns: 1fr; }
}
