:root {
  color-scheme: light;
  --ink: #10221b;
  --ink-soft: #294039;
  --paper: #f6f7f1;
  --white: #ffffff;
  --acid: #d8ff68;
  --acid-strong: #bde842;
  --stone: #dfe4d8;
  --line: rgba(16, 34, 27, 0.17);
  --shadow: 0 24px 70px rgba(7, 21, 16, 0.19);
  --radius: 1.25rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: 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);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e9ff9a;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.demo-ribbon {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.demo-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 2.25rem;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand-mark svg {
  width: 2rem;
  fill: var(--acid);
}

.brand-mark .brand-vein {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-width: 2.3px;
}

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

.brand strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:not(.nav-quote) {
  color: rgba(255, 255, 255, 0.8);
}

.nav-quote {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.language-switch {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.25rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.language-option {
  padding: 0.25rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.language-option.is-active {
  color: var(--acid);
}

.hero {
  position: relative;
  min-height: min(54rem, calc(100svh - 2.25rem));
  overflow: hidden;
  background: #0d1b16;
  color: var(--white);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 18, 14, 0.98) 0%, rgba(7, 18, 14, 0.84) 34%, rgba(7, 18, 14, 0.18) 68%, rgba(7, 18, 14, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 12, 9, 0.52) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(44rem, 60vw);
  padding: clamp(10rem, 20vh, 13rem) 2rem 9rem clamp(1.25rem, 7vw, 7.5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #53705f;
}

.eyebrow.light {
  color: var(--acid);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.4rem, 6.4vw, 6.8rem);
}

.hero-lede {
  max-width: 37rem;
  margin: 1.55rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-primary:hover {
  background: #e5ff94;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin: 1.8rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-list li > span:first-child {
  color: var(--acid);
  font-weight: 900;
}

.hero-quote-card {
  position: absolute;
  z-index: 4;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2.3rem;
  display: grid;
  width: min(23rem, 34vw);
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 1rem;
  background: rgba(12, 30, 23, 0.78);
  box-shadow: var(--shadow);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.quote-card-kicker {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-quote-card strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.12;
}

.quote-card-meta {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.quote-card-arrow {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  color: var(--acid);
  font-size: 1.6rem;
}

.image-note {
  position: absolute;
  z-index: 3;
  right: 1rem;
  top: 6rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.service-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip > p {
  margin: 0;
  color: #62736b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.6rem;
  font-size: 0.87rem;
  font-weight: 700;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7.5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.section-heading > p {
  max-width: 35rem;
  margin: 0;
  color: #5a6b63;
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.service-card.featured {
  background: var(--acid);
}

.service-card.dark-card {
  background: var(--ink);
  color: var(--white);
}

.service-number {
  color: #738078;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.featured .service-number,
.dark-card .service-number {
  color: currentColor;
  opacity: 0.62;
}

.service-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  margin-top: 2.3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.9rem;
}

.service-card h3 {
  margin: auto 0 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0.8rem 0 1.6rem;
  color: #5c6b64;
  font-size: 0.9rem;
}

.featured p {
  color: #304039;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--ink);
  color: var(--white);
}

.process-intro p:last-child {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-steps li > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-weight: 900;
}

.process-steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.process-steps p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 2rem;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 31rem;
  color: #5b6a63;
}

.demo-explainer {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--white);
}

.demo-explainer > span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--serif);
  font-weight: 900;
}

.demo-explainer p {
  margin: 0;
  color: #5b6a63;
  font-size: 0.86rem;
}

.demo-explainer strong {
  color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(16, 34, 27, 0.07);
}

.form-row.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-form label:not(.consent-row):not(.upload-field) {
  display: grid;
  gap: 0.45rem;
  color: #354941;
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid #c7d0c9;
  border-radius: 0.7rem;
  background: #fbfcf9;
  color: var(--ink);
  font-size: 1rem;
}

input,
select {
  padding: 0 0.85rem;
}

textarea {
  min-height: 8.5rem;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #5e7b6b;
  outline: 3px solid rgba(216, 255, 104, 0.65);
}

.field-error {
  border-color: #a32929;
}

.upload-field {
  position: relative;
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px dashed #9dac9f;
  border-radius: 0.8rem;
  cursor: pointer;
}

.upload-field strong,
.upload-field small {
  display: block;
}

.upload-field small {
  margin-top: 0.2rem;
  color: #6a776f;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.upload-button {
  flex: 0 0 auto;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  background: var(--stone);
  font-size: 0.8rem;
  font-weight: 850;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: #5c6b64;
  cursor: pointer;
  font-size: 0.85rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin: 0.15rem 0 0;
  accent-color: var(--ink);
}

.button-submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.button-submit:hover {
  background: #1b362c;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: #40544b;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.success {
  padding: 0.8rem;
  border-radius: 0.6rem;
  background: #eef9d2;
  color: #29420f;
}

.form-status.error {
  color: #8b1f1f;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 2.5rem clamp(1.25rem, 4vw, 4.5rem);
  background: #09130f;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-brand span {
  margin-top: 0.3rem;
}

footer p {
  max-width: 35rem;
  margin: 0;
}

footer a {
  color: var(--acid);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-content {
    width: min(47rem, 78vw);
  }

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

  .service-card {
    min-height: 22rem;
  }
}

@media (max-width: 780px) {
  .demo-ribbon {
    font-size: 0.68rem;
    letter-spacing: 0.045em;
  }

  .site-header {
    top: 2.25rem;
    padding: 1rem 1.15rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .hero {
    min-height: 54rem;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 18, 14, 0.99) 0%, rgba(7, 18, 14, 0.86) 51%, rgba(7, 18, 14, 0.36) 100%),
      linear-gradient(90deg, rgba(7, 18, 14, 0.6), transparent);
  }

  .hero-content {
    width: 100%;
    padding: 9rem 1.25rem 11rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.35rem, 14vw, 5.3rem);
  }

  .hero-lede {
    max-width: 31rem;
  }

  .hero-quote-card {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    width: auto;
  }

  .image-note {
    display: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .service-area-list {
    justify-content: flex-start;
  }

  .section-heading,
  .process,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .process {
    gap: 3rem;
  }

  .quote-copy {
    position: static;
  }

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

@media (max-width: 560px) {
  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .language-switch {
    padding: 0.25rem 0.4rem;
  }

  .hero {
    min-height: 58rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .service-grid,
  .form-row.two-up {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 20rem;
  }

  .upload-field {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
