:root {
  --ink: #12211c;
  --ink-strong: #07110e;
  --muted: #5f6962;
  --paper: #fbfaf6;
  --paper-warm: #f1eadf;
  --line: #d8d2c7;
  --copper: #b8662b;
  --copper-bright: #dc8640;
  --teal: #0d756e;
  --moss: #5d6f3a;
  --steel: #263c46;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 17, 14, 0.16);
  --radius: 8px;
  --max: 1180px;
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(18, 33, 28, 0.1);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(220, 134, 64, 0.95), rgba(13, 117, 110, 0.9)),
    var(--copper);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-panel {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-panel a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #33423d;
  font-size: 0.94rem;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(184, 102, 43, 0.1);
  color: var(--ink-strong);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(129, 63, 25, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9f5421;
}

.button-quiet {
  border-color: rgba(18, 33, 28, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink-strong);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.88) 0%, rgba(7, 17, 14, 0.63) 42%, rgba(7, 17, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 17, 14, 0.82) 0%, rgba(7, 17, 14, 0) 55%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 34px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 4.4rem, 4.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin: 58px 0 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-strip div {
  min-height: 112px;
  padding: 18px;
  background: rgba(7, 17, 14, 0.45);
}

.proof-strip dt {
  font-size: 1.65rem;
  font-weight: 850;
  line-height: 1;
}

.proof-strip dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.audience-band {
  background: var(--ink);
  color: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid a {
  min-height: 138px;
  padding: 26px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease;
}

.audience-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.audience-grid a:hover,
.audience-grid a:focus-visible {
  background: rgba(220, 134, 64, 0.13);
}

.audience-grid span {
  display: block;
  color: var(--copper-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audience-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.section {
  padding: 96px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.image-feature h2,
.product-layout h2,
.traction-layout h2,
.site-grid h2,
.resources-layout h2,
.contact-layout h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.2rem, 2.7rem, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-intro p,
.section-heading p,
.image-feature p,
.product-layout p,
.traction-layout p,
.site-grid p,
.resources-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.market-section {
  background: var(--paper);
}

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

.market-cards article,
.client-grid article,
.process-steps article,
.diligence-grid article,
.investor-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.market-cards article {
  min-height: 246px;
  padding: 22px;
}

.source-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #174d43;
  background: rgba(13, 117, 110, 0.1);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-cards h3,
.process-steps h3,
.client-grid h3,
.diligence-grid h3 {
  margin: 16px 0 8px;
  color: var(--ink-strong);
  font-size: 1.18rem;
}

.market-cards p,
.process-steps p,
.client-grid p,
.diligence-grid p {
  color: var(--muted);
}

.market-cards a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--teal);
  font-weight: 800;
}

.visual-band,
.clients-section,
.resources-section {
  background: var(--paper-warm);
}

.image-feature,
.product-layout,
.site-grid,
.traction-layout,
.resources-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 56px;
  align-items: center;
}

.image-feature figure,
.product-layout figure,
.site-grid figure,
.stacked-photo,
.process-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-feature img,
.product-layout img,
.site-grid img,
.stacked-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  margin-bottom: 72px;
}

.product-metrics {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.product-metrics span {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
}

.product-metrics strong {
  color: var(--ink-strong);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #33423d;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 117, 110, 0.12);
}

.technology-section {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.process-figure {
  display: grid;
  align-content: center;
  padding: 22px;
}

.process-figure img {
  width: 100%;
  object-fit: contain;
}

.process-figure figcaption,
.stacked-photo figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  min-height: 210px;
  padding: 22px;
}

.process-steps span {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
}

.spec-block {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 117, 110, 0.95), rgba(18, 33, 28, 0.96)),
    var(--ink);
}

.spec-block h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.14;
}

.spec-block p {
  color: rgba(255, 255, 255, 0.78);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  vertical-align: top;
}

th {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

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

.client-grid article {
  min-height: 238px;
  padding: 24px;
}

.traction-section {
  background: var(--ink);
  color: var(--white);
}

.traction-section h2,
.traction-section .eyebrow {
  color: var(--white);
}

.traction-section .eyebrow {
  color: var(--copper-bright);
}

.traction-section p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline span {
  color: var(--copper-bright);
  font-weight: 900;
}

.timeline strong {
  color: var(--white);
}

.stacked-photo {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-section {
  background: var(--paper);
}

.site-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-metrics span {
  padding: 9px 12px;
  border: 1px solid rgba(13, 117, 110, 0.2);
  border-radius: 999px;
  color: #174d43;
  background: rgba(13, 117, 110, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.investors-section {
  background:
    linear-gradient(180deg, rgba(241, 234, 223, 0.78), rgba(251, 250, 246, 1)),
    var(--paper);
}

.investors-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.disclaimer {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--copper);
  background: rgba(184, 102, 43, 0.09);
  color: #4a3c32;
  font-size: 0.95rem;
}

.investor-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.investor-metrics article {
  min-height: 170px;
  padding: 24px;
}

.investor-metrics span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-metrics strong {
  display: block;
  margin-top: 16px;
  color: var(--ink-strong);
  font-size: 2rem;
  line-height: 1;
}

.investor-metrics p {
  margin: 12px 0 0;
  color: var(--muted);
}

.diligence-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.diligence-grid article {
  padding: 26px;
}

.resources-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-list a {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 20px;
  border: 1px solid rgba(18, 33, 28, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 17, 14, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.resource-list a:hover,
.resource-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 102, 43, 0.55);
}

.resource-list span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--steel);
  font-weight: 900;
  font-size: 0.82rem;
}

.resource-list strong,
.resource-list small {
  display: block;
}

.resource-list strong {
  color: var(--ink-strong);
}

.resource-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  background: var(--ink-strong);
  color: var(--white);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-points a,
.contact-points span {
  color: rgba(255, 255, 255, 0.9);
}

.contact-points a {
  color: var(--copper-bright);
  font-weight: 850;
}

.enquiry-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--white);
  background: rgba(7, 17, 14, 0.76);
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--copper-bright);
  box-shadow: 0 0 0 4px rgba(220, 134, 64, 0.18);
}

.form-note {
  margin: 0;
  font-size: 0.84rem;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(18, 33, 28, 0.1);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-top: 8px;
}

.footer-grid strong {
  color: var(--ink-strong);
}

.footer-brand {
  margin-bottom: 14px;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(18, 33, 28, 0.14);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    padding: 14px;
    border: 1px solid rgba(18, 33, 28, 0.14);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a {
    padding: 14px;
  }

  .nav-actions {
    justify-self: end;
  }

  .split-layout,
  .image-feature,
  .product-layout,
  .process-layout,
  .traction-layout,
  .site-grid,
  .investors-layout,
  .resources-layout,
  .contact-layout,
  .spec-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    height: 68px;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-actions .button-quiet {
    display: none;
  }

  .nav-actions .button {
    min-height: 40px;
    padding: 10px 12px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 76px 0 22px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .proof-strip,
  .audience-grid,
  .market-cards,
  .process-steps,
  .investor-metrics,
  .diligence-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .audience-grid a,
  .audience-grid a:last-child {
    min-height: auto;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 68px 0;
  }

  .section-intro h2,
  .section-heading h2,
  .image-feature h2,
  .product-layout h2,
  .traction-layout h2,
  .site-grid h2,
  .resources-layout h2,
  .contact-layout h2 {
    font-size: 2rem;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .resource-list a {
    grid-template-columns: 1fr;
  }

  .resource-list span {
    width: 52px;
    height: 52px;
  }

  .enquiry-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
