:root {
  --ink: #0b1110;
  --muted: #5d6964;
  --line: #dce5df;
  --paper: #f7faf7;
  --white: #ffffff;
  --green: #24e278;
  --green-dark: #0a8f43;
  --blue: #2d74da;
  --gold: #c5963b;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(247, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand, .site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark, .site-brand span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0;
}

.topbar nav, .site-header nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.top-cta, .button, .call-button, .quote-button, .ghost-button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.top-cta, .button.primary, .quote-button {
  background: var(--green);
  color: #04120a;
}

.top-cta { padding: 11px 15px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 46px;
  min-height: calc(100vh - 72px);
  padding: 78px 6vw 52px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.label {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.label.dark { color: #2e4238; }

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

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions, .site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button { padding: 15px 20px; }

.button.secondary, .ghost-button {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-visual { position: relative; }

.browser-frame {
  border: 1px solid #c8d5ce;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(12, 24, 18, 0.14);
  overflow: hidden;
}

.dots {
  display: flex;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cdd8d2;
}

.preview-site { padding: 28px; }

.preview-nav {
  width: 100%;
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #0b1110 0 28%, #edf4ef 28% 100%);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 22px;
  margin-top: 42px;
  align-items: center;
}

.preview-title {
  width: 92%;
  height: 96px;
  border-radius: var(--radius);
  background: #111a17;
}

.preview-line {
  height: 14px;
  margin-top: 13px;
  border-radius: 999px;
  background: #dbe6df;
}

.preview-line.short { width: 72%; }

.preview-buttons {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.preview-buttons span {
  width: 128px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--green);
}

.preview-buttons span + span { background: #eef5f0; }

.preview-card {
  min-height: 235px;
  padding: 24px;
  border-radius: var(--radius);
  background: #0b1110;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.preview-card strong {
  color: var(--green);
  font-size: 44px;
  line-height: 1;
}

.preview-card small { color: #b9c7bf; }

.preview-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.preview-rows span {
  height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.floating-panel {
  position: absolute;
  right: -18px;
  bottom: -22px;
  max-width: 230px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 20px 60px rgba(36, 226, 120, 0.32);
}

.floating-panel span, .floating-panel small {
  display: block;
  color: #174025;
  font-weight: 750;
}

.floating-panel strong {
  display: block;
  margin: 4px 0;
  font-size: 38px;
}

.prospects, .research, .concept {
  padding: 70px 6vw;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head h2, .concept h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.prospect-card, .research-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.prospect-card strong, .research-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}

.prospect-card p, .research-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.prospect-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.workspace {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 6vw 70px;
  align-items: start;
}

.selector {
  position: sticky;
  top: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.selector-head {
  display: flex;
  justify-content: space-between;
  padding: 8px 6px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.tabs { display: grid; gap: 8px; }

.tab {
  width: 100%;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.tab strong { display: block; color: var(--ink); }

.tab span { font-size: 12px; font-weight: 700; }

.tab.active {
  border-color: #b7eecb;
  background: #effbf3;
}

.site-shell {
  overflow: hidden;
  border: 1px solid #cad8d0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(11, 17, 16, 0.08);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.site-brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.call-button {
  padding: 12px 14px;
  background: var(--ink);
  color: var(--white);
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  padding: 56px 42px;
  background:
    radial-gradient(circle at 86% 18%, rgba(36, 226, 120, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f3f8f4);
}

.site-location {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-weight: 850;
}

.site-hero h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.site-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.quote-button, .ghost-button { padding: 14px 18px; }

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.service-strip span {
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.intake-card {
  padding: 20px;
  border-radius: var(--radius);
  background: #0b1110;
  color: var(--white);
  align-self: start;
}

.intake-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #b9c7bf;
  font-weight: 800;
}

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

.intake-call {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.intake-call small {
  display: block;
  margin-top: 4px;
  color: #b9c7bf;
}

.pulse {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(36, 226, 120, 0.14);
}

form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #b9c7bf;
  font-size: 12px;
  font-weight: 800;
}

input {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

form button {
  padding: 13px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  font-weight: 850;
}

.site-services, .proof-row, .contact-band {
  padding: 44px 42px;
  border-top: 1px solid var(--line);
}

.site-services {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 28px;
}

.site-services h3, .proof-copy h3, .contact-band h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.08;
}

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

.mini-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.mini-card b {
  display: block;
  margin-bottom: 8px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #101916;
  color: var(--white);
}

.proof-row p { color: #c7d3cc; line-height: 1.55; }

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-stats div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.proof-stats strong {
  display: block;
  color: var(--green);
  font-size: 22px;
}

.proof-stats span {
  color: #c7d3cc;
  font-size: 12px;
  font-weight: 750;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.contact-band p { margin: 0; color: var(--muted); }

.research { background: #eef5f0; }

.research-card small {
  display: block;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 850;
}

.concept {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: center;
}

.concept p {
  color: var(--muted);
  line-height: 1.55;
}

.concept img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 17, 16, 0.12);
}

@media (max-width: 980px) {
  .topbar nav, .site-header nav { display: none; }
  .hero, .workspace, .site-hero, .site-services, .proof-row, .contact-band, .concept {
    grid-template-columns: 1fr;
  }
  .selector { position: static; }
  .prospect-grid, .research-grid, .service-cards, .proof-stats { grid-template-columns: 1fr; }
  .site-header, .contact-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .topbar { padding: 12px 16px; }
  .top-cta { display: none; }
  .hero, .prospects, .research, .concept { padding-left: 18px; padding-right: 18px; }
  .workspace { padding-left: 18px; padding-right: 18px; }
  .site-hero, .site-services, .proof-row, .contact-band { padding: 28px 20px; }
  .service-strip { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .floating-panel { position: static; margin-top: 14px; max-width: none; }
  h1 { font-size: 43px; }
  .site-hero h2 { font-size: 38px; }
}
