:root {
  --green: #159947;
  --green-dark: #0b6f35;
  --green-soft: #eaf7ef;
  --ink: #0f1720;
  --navy: #122231;
  --muted: #657282;
  --soft: #f5f8f6;
  --line: #dfe7e3;
  --gold: #b7862c;
  --cream: #fbfaf6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 32, 0.14);
  --shadow-soft: 0 18px 48px rgba(15, 23, 32, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
}

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

p {
  margin-top: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #0c161f;
  font-size: 12px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 15px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 231, 227, 0.9);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 142px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-p {
  color: var(--green);
}

.brand-coin {
  color: var(--ink);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #445060;
  font-size: 14px;
  font-weight: 760;
}

.nav a {
  padding: 10px 0;
}

.nav a:hover {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 820;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(21, 153, 71, 0.24);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(15, 23, 32, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: clamp(40px, 7vw, 98px);
  align-items: center;
  min-height: calc(100vh - 101px);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px) 56px;
  background:
    linear-gradient(120deg, rgba(21, 153, 71, 0.09), transparent 34%),
    linear-gradient(160deg, transparent 0%, rgba(183, 134, 44, 0.12) 100%),
    var(--cream);
}

.hero-kicker,
.eyebrow {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.signal {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(21, 153, 71, 0.13);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.5vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-text,
.section-heading > p,
.section-heading.split > p,
.deliverables-copy p,
.contact-copy p,
.compliance p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-text {
  max-width: 820px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 850px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--green);
  pointer-events: none;
}

.dashboard-header,
.dashboard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-header strong {
  font-size: 19px;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 850;
}

.file-preview {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 430px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 16px;
  background: #111b25;
}

.preview-sidebar span {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-sidebar .active {
  background: var(--green);
}

.preview-body {
  padding: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f3f8f5 100%);
}

.preview-title {
  margin-bottom: 42px;
  font-size: 32px;
  font-weight: 850;
}

.skeleton {
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #dbe5df;
}

.skeleton.long {
  width: 88%;
}

.skeleton.medium {
  width: 68%;
}

.skeleton.short {
  width: 45%;
}

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

.document-grid div {
  padding: 16px;
  border: 1px solid #d8e5dc;
  border-radius: 8px;
  background: #ffffff;
}

.document-grid span,
.document-grid strong {
  display: block;
}

.document-grid span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.document-grid strong {
  color: var(--green-dark);
}

.dashboard-foot {
  padding-top: 4px;
}

.dashboard-foot div {
  width: 50%;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.metric {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
}

.metric-copy {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.capability-strip div {
  padding: 24px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
}

.capability-strip div:last-child {
  border-right: 0;
}

.capability-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
}

.section {
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: none;
  align-items: end;
}

.eyebrow {
  margin-bottom: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.service-card.featured {
  grid-row: span 2;
  color: #ffffff;
  background: #142332;
}

.service-card p {
  color: var(--muted);
  line-height: 1.62;
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.75);
}

.service-card.featured h3 {
  color: #ffffff;
}

.card-number {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.service-card ul,
.compliance-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.compliance-panel li {
  position: relative;
  padding-left: 18px;
  color: #3f4a56;
  line-height: 1.45;
}

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

.deliverables {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: var(--navy);
}

.realestate {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.86fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.08), transparent 42%),
    #ffffff;
}

.realestate-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.realestate-disclaimer {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #d8e5dc;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
}

.realestate-disclaimer strong {
  font-size: 16px;
}

.realestate-disclaimer span {
  color: var(--muted);
  line-height: 1.58;
}

.asset-dossier {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
  box-shadow: var(--shadow);
}

.asset-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.asset-toolbar {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  background: #111b25;
}

.asset-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.building-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 28px;
}

.building-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-content: end;
  min-height: 164px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #eaf7ef, #ffffff);
  border: 1px solid #d8e5dc;
}

.building-visual span {
  display: block;
  height: 42px;
  border-radius: 5px;
  background: var(--green);
}

.building-visual span:nth-child(2) {
  height: 78px;
  background: #1f4d6b;
}

.building-visual span:nth-child(3) {
  height: 104px;
  background: #b7862c;
}

.building-visual span:nth-child(4) {
  height: 132px;
  background: #142332;
}

.building-info {
  align-self: center;
}

.building-info strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.building-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.asset-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.asset-checks div {
  padding: 18px;
  background: #fbfcfb;
  font-weight: 850;
}

.asset-checks span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
}

.deliverables h2 {
  color: #ffffff;
}

.deliverables-copy p {
  color: #c7d3dd;
}

.deliverables .eyebrow {
  color: #7bd59c;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.deliverable-list div {
  min-height: 166px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.deliverable-list span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--green-dark);
  background: #dff6e7;
  font-size: 12px;
  font-weight: 900;
}

.deliverable-list strong {
  display: block;
  margin-bottom: 9px;
}

.deliverable-list p {
  margin: 0;
  color: #c7d3dd;
  line-height: 1.55;
}

.process-section {
  background: #ffffff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.step {
  min-height: 260px;
  padding: 30px;
  background: #fbfcfb;
}

.step span {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.step p {
  color: var(--muted);
  line-height: 1.62;
}

.compliance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.1), transparent 42%),
    #0f171f;
}

.compliance h2 {
  color: #ffffff;
}

.compliance .eyebrow {
  color: #7bd59c;
}

.compliance p {
  color: #c7d3dd;
}

.compliance-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.compliance-panel strong {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
}

.compliance-panel li {
  color: #dbe4eb;
}

.audience-section {
  background: var(--soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-grid div {
  min-height: 182px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.audience-grid strong,
.audience-grid span {
  display: block;
}

.audience-grid strong {
  margin-bottom: 18px;
  font-size: 18px;
}

.audience-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.contact-card {
  display: inline-grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.legal-section {
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.legal-page-hero {
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(21, 153, 71, 0.08), transparent 42%),
    var(--cream);
  text-align: center;
}

.legal-page-hero h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.legal-page-hero p:not(.eyebrow) {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.legal-meta span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.legal-document {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.legal-document article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 32, 0.04);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 32px);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.company-section {
  background: var(--soft);
}

.terms-section {
  background: var(--cream);
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  gap: 14px;
}

.legal-card,
.policy-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 32, 0.04);
}

.legal-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card strong {
  display: block;
  margin-bottom: 12px;
  line-height: 1.35;
}

.legal-card p,
.policy-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.policy-list h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9d5;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(21, 153, 71, 0.17);
  border-color: var(--green);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #cbd5dc;
  background: #0c161f;
}

.footer-logo {
  display: block;
  width: 156px;
  height: 76px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p,
.footer-note {
  margin: 0;
  color: #94a2ae;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: #cbd5dc;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-note {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero,
  .realestate,
  .deliverables,
  .compliance,
  .contact-section,
  .legal-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-row: auto;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    font-size: 44px;
  }

  .hero-proof,
  .capability-strip,
  .service-grid,
  .asset-checks,
  .deliverable-list,
  .timeline,
  .audience-grid,
  .policy-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    padding: 18px;
  }

  .file-preview {
    grid-template-columns: 44px 1fr;
    min-height: 370px;
  }

  .preview-body {
    padding: 22px;
  }

  .document-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .dashboard-foot {
    flex-direction: column;
  }

  .dashboard-foot div {
    width: 100%;
  }

  .building-card {
    grid-template-columns: 1fr;
  }

  .capability-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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