:root {
  --ink: #08131f;
  --ink-2: #132436;
  --text: #203243;
  --muted: #617083;
  --line: #dce5ea;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --cyan: #00aeea;
  --cyan-bright: #00d4ff;
  --green: #24c889;
  --amber: #f0a84b;
  --coral: #f06f61;
  --violet: #7757d8;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(8, 19, 31, 0.14);
  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(--text);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 234, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 216px;
  height: auto;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: none;
}

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

.site-nav a {
  padding: 10px 13px;
  color: #25394d;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #006d9b;
  background: #e9f8fc;
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 6vw, 86px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 19, 31, 0.96), rgba(11, 35, 49, 0.9) 54%, rgba(19, 45, 51, 0.92)),
    radial-gradient(circle at 12% 18%, rgba(0, 212, 255, 0.4), transparent 31%),
    radial-gradient(circle at 78% 20%, rgba(36, 200, 137, 0.28), transparent 28%),
    #08131f;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 13px;
  color: #009bce;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.outcomes .eyebrow {
  color: var(--cyan-bright);
}

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

h1 {
  margin-bottom: 22px;
  color: inherit;
  font-size: clamp(45px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button.primary {
  color: #04101a;
  background: linear-gradient(135deg, var(--cyan-bright), var(--green));
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 174, 234, 0.22);
  outline: none;
}

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

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

.metric-strip dt {
  color: #fff;
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
}

.metric-strip dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.hero-panel {
  position: absolute;
  min-width: 190px;
  padding: 16px;
  color: #fff;
  background: rgba(8, 19, 31, 0.82);
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 18px;
}

.panel-one {
  left: -18px;
  bottom: 34px;
}

.panel-two {
  right: -10px;
  top: 44px;
}

.section-pad {
  padding: clamp(66px, 8vw, 116px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 980px;
  margin-bottom: 38px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  background:
    linear-gradient(90deg, #ffffff, rgba(244, 248, 251, 0.9)),
    #fff;
}

.intro-content {
  display: grid;
  gap: 22px;
}

.intro-content p {
  margin-bottom: 0;
  font-size: 17px;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.intro-highlights article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 19, 31, 0.06);
}

.intro-highlights strong,
.intro-highlights span {
  display: block;
}

.intro-highlights strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.intro-highlights span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.track-section {
  background: var(--mist);
}

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

.process-grid article,
.project-cards article {
  position: relative;
  min-height: 238px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.track-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(8, 19, 31, 0.08);
}

.track-card > img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  background: #07131e;
}

.track-body {
  position: relative;
  padding: 22px 22px 24px;
}

.track-card::before,
.process-grid article::before,
.project-cards article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--cyan);
}

.track-card::before {
  inset: auto 0 0 0;
  width: auto;
  height: 4px;
}

.track-card p {
  min-height: 154px;
  font-size: 15px;
  line-height: 1.62;
}

.track-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.track-card li {
  position: relative;
  padding-left: 18px;
  color: #405365;
  font-size: 13px;
  line-height: 1.5;
}

.track-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--cyan);
  border-radius: 999px;
}

.accent-cyan::before {
  background: var(--cyan);
}

.accent-lime::before {
  background: var(--green);
}

.accent-coral::before {
  background: var(--coral);
}

.accent-violet::before {
  background: var(--violet);
}

.accent-amber::before {
  background: var(--amber);
}

.accent-blue::before {
  background: #3774d8;
}

.testimonials {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.98), rgba(12, 43, 57, 0.95)),
    #08131f;
  overflow: hidden;
}

.testimonials h2 {
  color: #fff;
}

.testimonials p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-shell {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 278px;
  margin: 0 16px 0 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-card figcaption {
  margin-top: 24px;
  color: var(--cyan-bright);
  font-size: 14px;
  font-weight: 900;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.carousel-button span {
  font-size: 34px;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: rgba(0, 212, 255, 0.18);
  outline: none;
}

.carousel-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dot.active {
  width: 28px;
  background: linear-gradient(135deg, var(--cyan-bright), var(--green));
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  padding: clamp(66px, 8vw, 116px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.98), rgba(18, 51, 59, 0.96)),
    #08131f;
}

.feature-band h2,
.feature-band h3 {
  color: #fff;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-image img,
.project-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 7px;
  color: #fff;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.project-image {
  position: sticky;
  top: 98px;
}

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

.project-cards article span {
  display: inline-block;
  margin-bottom: 22px;
  color: #007aa8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.process {
  background: linear-gradient(90deg, #f7fbfd, #fff);
}

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

.process-grid article {
  min-height: 250px;
}

.process-grid article span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--amber);
  font-weight: 950;
}

.contact {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.96), rgba(12, 49, 57, 0.92)),
    #08131f;
}

.contact h2 {
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

address {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  font-style: normal;
}

address strong {
  color: #fff;
}

address a {
  color: #a7eefc;
  line-height: 1.55;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: #fff;
  background: rgba(5, 14, 23, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 4px;
  width: min(380px, calc(100vw - 32px));
  padding: 18px;
  color: #fff;
  background: #07131e;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.toast strong {
  color: #fff;
}

.toast span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 70px);
  color: #cbd5dd;
  background: #06101a;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 130px;
  padding: 5px;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: #dce9ef;
  font-weight: 800;
}

.legal-page {
  background: #fff;
}

.legal-hero {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.98), rgba(0, 93, 126, 0.86)),
    #08131f;
}

.legal-hero h1 {
  margin-bottom: 12px;
  max-width: 900px;
  font-size: clamp(44px, 7vw, 72px);
}

.legal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  max-width: 920px;
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 70px);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
}

@media (max-width: 1060px) {
  .hero,
  .intro,
  .feature-band,
  .project-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .project-image {
    position: static;
  }

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

  .intro-highlights {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

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

  .brand-logo {
    width: 190px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .legal-nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body.nav-open .site-nav {
    display: grid;
  }

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

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 42px;
  }

  .metric-strip,
  .track-grid,
  .project-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .carousel-dots {
    grid-column: 1;
  }

  .testimonial-card {
    flex-basis: 100%;
    margin-right: 0;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .hero-panel {
    position: static;
    margin-top: 10px;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 168px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .section-pad,
  .hero,
  .feature-band,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button {
    width: 100%;
  }
}
