:root {
  --ink: #091320;
  --navy: #0f2638;
  --muted: #61717d;
  --aqua: #20c4d5;
  --aqua-deep: #0797ad;
  --line: #dbe5e9;
  --soft: #f5f9fa;
  --white: #ffffff;
  --shell: #ffffff;
  --mist: #eef8fa;
  --reef: #d9f3f6;
  --gold: #bd8b46;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Space Grotesk", "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(219, 229, 233, 0.4);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 26px clamp(20px, 5vw, 56px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.nav-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--aqua-deep);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 58%, rgba(255,255,255,0.18), rgba(255,255,255,0) 38%),
    repeating-linear-gradient(118deg, rgba(255,255,255,0.13) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(28deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 46px);
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 46%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 26%, rgba(255,255,255,0.88) 39%, rgba(255,255,255,0.38) 54%, rgba(255,255,255,0) 74%),
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0) 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(46rem, 100%);
  padding: 145px clamp(22px, 5vw, 64px) 104px;
}

.identity {
  margin: 0 0 46px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--aqua-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.4rem, 8.2vw, 8.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.aqua-rule {
  width: 74px;
  height: 2px;
  margin: 32px 0 26px;
  background: var(--aqua);
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 39rem;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.primary-cta,
.form-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--aqua);
  background: var(--aqua);
  color: var(--white);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 0 28px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-cta:hover,
.form-button:hover {
  background: var(--aqua-deep);
  border-color: var(--aqua-deep);
  transform: translateY(-2px);
}

.primary-cta img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
}

.stats-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0;
  background: var(--white);
  overflow: hidden;
}

.stats-strip::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.7) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.46) 0 1px, transparent 1px 42px);
  opacity: 0.28;
  content: "";
}

.stats-strip > * {
  position: relative;
  z-index: 1;
}

.stat {
  min-height: 112px;
  padding: 14px 22px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--aqua-deep);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 0;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 108px 0;
  overflow: hidden;
}

.section::before {
  position: absolute;
  inset: 26px -4vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(255,255,255,0.92), rgba(255,255,255,0) 30%),
    radial-gradient(ellipse at 88% 62%, rgba(217,237,234,0.46), rgba(217,237,234,0) 42%),
    linear-gradient(135deg, rgba(255,255,255,0.48), rgba(234,243,242,0.2));
  opacity: 0;
  content: "";
}

.section::after {
  position: absolute;
  inset: 44px -2vw;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(35deg, rgba(255,255,255,0.55) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(125deg, rgba(255,255,255,0.34) 0 1px, transparent 1px 82px),
    radial-gradient(circle at 18% 74%, rgba(255,255,255,0.5) 0 2px, transparent 3px 100%);
  background-size: auto, auto, 46px 46px;
  opacity: 0;
  content: "";
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-tight {
  padding-top: 72px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-card {
  min-height: 292px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(250,250,246,0.42)),
    radial-gradient(ellipse at 78% 8%, rgba(255,255,255,0.64), rgba(255,255,255,0) 34%);
}

.line-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 40px;
  margin-bottom: 36px;
  color: var(--aqua);
  opacity: 1;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  border: 1.5px solid currentColor;
}

.icon-wave::before {
  inset: 14px 0 8px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  transform: skewX(-22deg);
}

.icon-wave::after {
  width: 40px;
  height: 16px;
  left: 6px;
  top: 8px;
  border-bottom: 0;
  transform: skewX(-18deg);
}

.icon-building::before {
  width: 20px;
  height: 34px;
  left: 6px;
  bottom: 0;
}

.icon-building::after {
  width: 20px;
  height: 24px;
  left: 25px;
  bottom: 0;
}

.icon-drop::before {
  width: 22px;
  height: 34px;
  left: 15px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-table::before {
  width: 42px;
  height: 22px;
  left: 5px;
  top: 8px;
}

.icon-table::after {
  width: 24px;
  left: 14px;
  bottom: 3px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.icon-spark::before {
  width: 34px;
  height: 34px;
  left: 9px;
  transform: rotate(45deg);
}

.icon-spark::after {
  width: 14px;
  height: 14px;
  left: 19px;
  top: 10px;
  transform: rotate(45deg);
}

.icon-tool::before {
  width: 36px;
  height: 12px;
  left: 7px;
  top: 14px;
  transform: rotate(-24deg);
}

.icon-tool::after {
  width: 10px;
  height: 24px;
  left: 34px;
  top: 10px;
  transform: rotate(-24deg);
}

.industry-card h3,
.service-card h3,
.process-step h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.industry-card p,
.service-card p,
.process-step p,
.proof-copy p,
.note-panel p,
.about-copy p,
.contact-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.concepts-section {
  border-top: 1px solid var(--line);
}

.section-tight::before,
.proof-section::before,
.process-section::before,
.about-section::before,
.contact-section::before {
  opacity: 0.72;
}

.section-tight::after,
.proof-section::after,
.process-section::after,
.about-section::after,
.contact-section::after {
  opacity: 0.24;
}

.proof-section::after,
.contact-section::after {
  background:
    radial-gradient(ellipse at 74% 18%, rgba(255,255,255,0.66), rgba(255,255,255,0) 26%),
    radial-gradient(ellipse at 84% 28%, rgba(255,255,255,0.28), rgba(255,255,255,0) 38%),
    repeating-radial-gradient(ellipse at 82% 22%, rgba(255,255,255,0.34) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(122deg, rgba(255,255,255,0.28) 0 1px, transparent 1px 54px);
  filter: blur(0.2px);
}

.process-section::after,
.about-section::after {
  background:
    radial-gradient(ellipse at 12% 72%, rgba(255,255,255,0.62), rgba(255,255,255,0) 30%),
    repeating-linear-gradient(24deg, rgba(255,255,255,0.42) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(156deg, rgba(255,255,255,0.28) 0 1px, transparent 1px 92px);
}

.concepts-section::before {
  opacity: 0.52;
}

.concepts-section::after {
  opacity: 0.16;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.concept-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.concept-card:nth-child(2) img {
  object-position: 50% 60%;
}

.concept-card:nth-child(3) img {
  object-position: 48% 66%;
}

.concept-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}

.concept-meta h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.concept-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.concept-meta span {
  color: var(--aqua);
  font-size: 1.8rem;
  line-height: 1;
}

.split-section,
.proof-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-intro {
  position: sticky;
  top: 120px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 214px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 88% 8%, rgba(255,255,255,0.8), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(245,248,246,0.5));
}

.proof-section {
  align-items: center;
}

.proof-copy p + p {
  margin-top: 24px;
}

.pull-line {
  color: var(--navy) !important;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important;
  line-height: 1.35;
}

.proof-points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.proof-points li {
  position: relative;
  padding: 24px 0 24px 42px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-points li::before {
  position: absolute;
  left: 0;
  top: 29px;
  width: 20px;
  height: 2px;
  background: var(--aqua);
  content: "";
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 72px;
  color: var(--aqua-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.process-note {
  max-width: 520px;
  margin: 28px auto 0;
  color: var(--navy);
  font-size: 1rem;
  text-align: center;
}

.real-estate-note {
  padding-top: 0;
}

.real-estate-note::before {
  opacity: 0.82;
}

.real-estate-note::after {
  opacity: 0.28;
}

.note-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  padding: 54px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.88), rgba(255,255,255,0) 38%),
    linear-gradient(135deg, rgba(245,248,246,0.96), rgba(234,243,242,0.66));
  overflow: hidden;
}

.note-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 82% 28%, rgba(255,255,255,0.6), rgba(255,255,255,0) 32%),
    repeating-linear-gradient(48deg, rgba(255,255,255,0.52) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(132deg, rgba(255,255,255,0.34) 0 1px, transparent 1px 76px);
  opacity: 0.44;
  content: "";
}

.note-panel > * {
  position: relative;
  z-index: 1;
}

.note-panel .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.note-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.about-section {
  border-top: 1px solid var(--line);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
}

.about-shell .section-label {
  grid-column: 1 / -1;
}

.about-copy {
  display: grid;
  gap: 24px;
}

.contact-section {
  align-items: start;
}

.contact-intro small {
  display: block;
  margin-top: 26px;
  color: var(--aqua-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-wide {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(32, 196, 213, 0.12);
}

.form-button {
  width: fit-content;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--aqua-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 44px clamp(22px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-brand span,
.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--aqua-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.94) 42%, rgba(255,255,255,0.48) 72%, rgba(255,255,255,0.1) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0) 45%);
  }

  .hero-content {
    width: min(42rem, 100%);
  }

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

  .stat {
    border-bottom: 1px solid var(--line);
  }

  .stat + .stat {
    border-left: 0;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .industry-grid,
  .concept-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .proof-section,
  .contact-section,
  .about-shell,
  .note-panel {
    grid-template-columns: 1fr;
  }

  .split-intro {
    position: static;
  }

  .process-step {
    min-height: 250px;
  }

  .process-step span {
    margin-bottom: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    padding: 18px 22px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 22px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.55) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.1) 62%);
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .identity {
    margin-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  .primary-cta,
  .form-button {
    width: 100%;
  }

  .stats-strip,
  .section {
    width: min(100% - 32px, var(--max));
  }

  .stats-strip,
  .industry-grid,
  .concept-grid,
  .service-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(odd) {
    border-right: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding-top: 48px;
  }

  .section-heading {
    text-align: left;
  }

  .industry-card,
  .service-card,
  .process-step {
    min-height: auto;
    padding: 28px 24px;
  }

  .concept-card img {
    aspect-ratio: 1.35 / 1;
  }

  .note-panel {
    padding: 30px 24px;
  }

  .footer-brand strong {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
