:root {
  --ink: #081018;
  --ink-2: #10202d;
  --paper: #f7fbfc;
  --muted: #62717e;
  --line: rgba(8, 16, 24, 0.12);
  --cyan: #0bbce8;
  --amber: #f4aa28;
  --magenta: #d94db8;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(8, 16, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 188, 232, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(8, 16, 24, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 52%);
  z-index: -1;
}

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

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

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

.skip-link:focus {
  z-index: 99;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  top: 12px;
  left: 12px;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(247, 251, 252, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 16, 24, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--ink-2) 55%, var(--amber));
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11, 188, 232, 0.25);
}

.brand em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 8px;
  color: #293847;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(11, 188, 232, 0.12);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 70px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 24, 0.94), rgba(8, 16, 24, 0.76) 38%, rgba(8, 16, 24, 0.16) 75%),
    linear-gradient(0deg, rgba(8, 16, 24, 0.62), transparent 40%);
  z-index: 1;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-copy {
  width: min(650px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  box-shadow: 0 18px 48px rgba(11, 188, 232, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 46px 0 0;
}

.proof-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.proof-grid dt {
  font-size: 1.3rem;
  font-weight: 900;
}

.proof-grid dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.section,
.split-section,
.contact-layout,
.page-hero {
  padding: clamp(62px, 8vw, 110px) clamp(20px, 5vw, 70px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.service-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.values-grid article,
.contact-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 50px rgba(8, 16, 24, 0.07);
}

.service-card {
  min-height: 265px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-index {
  align-self: flex-start;
  margin-bottom: auto;
  color: var(--amber);
  font-weight: 900;
}

.service-card p,
.values-grid p,
.content-stack p,
.page-hero p,
.contact-panel li,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 70px) clamp(70px, 8vw, 110px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 188, 232, 0.2), rgba(217, 77, 184, 0.18)),
    #0a131d;
}

.band h2 {
  margin-bottom: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-strip div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.metric-strip span {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(11, 188, 232, 0.16), transparent 32%),
    linear-gradient(315deg, rgba(244, 170, 40, 0.16), transparent 32%);
}

.page-hero.compact {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(58px, 7vw, 90px);
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.12rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
}

.content-stack {
  font-size: 1.08rem;
}

.section.tight {
  padding-top: 0;
}

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

.values-grid article {
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 24px;
  align-items: start;
  padding-top: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-form label,
.contact-form span {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #283746;
  font-weight: 800;
}

.contact-form .full,
.form-button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 16, 24, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 188, 232, 0.26);
  border-color: var(--cyan);
}

.contact-panel {
  padding: 28px;
}

.contact-panel ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.text-link {
  color: #006d8a;
  font-weight: 900;
}

.notice {
  margin: 22px clamp(20px, 5vw, 70px) 0;
  padding: 16px 18px;
  border: 1px solid rgba(11, 188, 232, 0.32);
  border-radius: 8px;
  color: #06495a;
  background: rgba(11, 188, 232, 0.12);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .section-heading,
  .band,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 18px;
    background: rgba(247, 251, 252, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-link {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(8, 16, 24, 0.92), rgba(8, 16, 24, 0.72)),
      linear-gradient(0deg, rgba(8, 16, 24, 0.72), transparent 52%);
  }

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

  .proof-grid,
  .service-grid,
  .values-grid,
  .metric-strip,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
