:root {
  --bg: #ffffff;
  --bg-elevated: #f5f5f5;
  --ink: #141414;
  --muted: #5c5c5c;
  --line: #e4e4e4;
  --line-strong: #cccccc;
  --accent: #29aae1;
  --accent-hover: #1d96c9;
  --black: #000000;
  --logo-gray: #cccccc;
  --font: "Montserrat", system-ui, sans-serif;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 0.8rem;
  font-weight: 700;
}

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

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.lede,
.section-lede {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #141414;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #141414;
}

.btn-ghost {
  border-color: var(--logo-gray);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--black);
  border-bottom: 1px solid #222;
}

.site-header .header-inner {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand img {
  width: min(188px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--logo-gray);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.site-nav .btn-primary,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible {
  color: #141414;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--logo-gray);
}

.nav-toggle .bar:nth-child(2) {
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: calc(100vh - 4.5rem);
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--pad);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.45;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.75rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  text-transform: uppercase;
  max-width: 16ch;
}

.hero h1 span {
  color: var(--accent);
}

.hero-location {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.strip-track {
  display: flex;
  width: max-content;
  animation: strip-scroll 32s linear infinite;
}

.strip-inner {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem 1rem 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip .dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-split {
  grid-template-areas:
    "eyebrow ."
    "heading copy";
  gap: 0 clamp(2rem, 5vw, 5rem);
}

.about-split .eyebrow {
  grid-area: eyebrow;
}

.about-split h2 {
  grid-area: heading;
}

.about-split .about-copy {
  grid-area: copy;
}

.about-copy > p {
  color: var(--muted);
}

.about-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: clamp(2.75rem, 6vw, 4.5rem) 0 0;
  padding: 0;
}

.about-flow::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: calc((100% - 3rem) / 6 + 1.55rem);
  right: calc((100% - 3rem) / 6 + 1.55rem);
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-flow li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-size: 1.2rem;
}

.flow-title {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-copy {
  margin: 0;
  max-width: 16rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 560px) {
  .about-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-flow::before {
    display: none;
  }

  .about-flow li {
    align-items: flex-start;
    text-align: left;
    padding-left: 3.5rem;
  }

  .about-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3.1rem;
    left: 1.55rem;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: var(--accent);
    opacity: 0.4;
    transform: translateX(-50%);
  }

  .flow-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

  .flow-copy {
    max-width: none;
  }
}

.services {
  background: var(--bg-elevated);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.card {
  grid-column: span 2;
  background: #fff;
  border: 4px solid var(--line);
  padding: 1.6rem 1.5rem 1.7rem;
  min-height: 100%;
}

.card:nth-child(4),
.card:nth-child(5) {
  grid-column: span 3;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-icon {
  color: var(--accent);
  font-size: 3.75rem;
  line-height: 1;
}

.card-index {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
}

.card p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.card:hover {
  border-color: var(--accent);
  border-width: 4px;
}

.cta-band {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 1.35rem 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
}

.cta-band p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.platforms {
  background: var(--bg-elevated);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.platform-grid li {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 1.6rem 1rem 1.45rem;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  border: 4px solid var(--line);
}

.platform-grid li:hover {
  border-color: var(--accent);
  border-width: 4px;
}

.platform-grid img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.platform-grid span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact {
  background: #fff;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-full,
.contact-form .btn,
.form-status {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.btn:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
}

.form-status.error {
  color: #c62828;
}

.site-footer {
  background: var(--black);
  padding: 2.5rem 0 2.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  display: grid;
  gap: 0.75rem;
}

.site-footer .brand {
  color: #fff;
  font-weight: 700;
}

.site-footer .brand:hover {
  color: var(--accent);
}

.site-footer p {
  color: var(--logo-gray);
  margin: 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.social-link:hover {
  color: var(--accent-hover);
}

.legal {
  font-size: 0.85rem;
}

.legal a {
  color: var(--logo-gray);
  margin-left: 0.35rem;
}

.legal a:hover {
  color: var(--accent);
}

.legal-page {
  background: #fff;
}

.legal-wrap {
  max-width: 42rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
}

.legal-page p {
  color: var(--muted);
}

@media (max-width: 900px) {

  .split,
  .service-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-areas:
      "eyebrow"
      "heading"
      "copy";
  }

  .about-split .about-copy {
    margin-top: 1.25rem;
  }

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

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

  .socials {
    justify-content: flex-start;
  }

  .card,
  .card:nth-child(4),
  .card:nth-child(5) {
    grid-column: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--pad) 1.25rem;
    background: var(--black);
    border-bottom: 1px solid #222;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .header-cta {
    width: 100%;
  }
}

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

  .strip-track {
    animation: none;
  }
}