:root {
  color-scheme: light;
  --ink: #17121f;
  --muted: #665f70;
  --line: #e2dce8;
  --paper: #f8f5fb;
  --white: #ffffff;
  --purple: #2d1648;
  --purple-deep: #1b102f;
  --purple-soft: #ebe3f3;
  --teal: #0d8077;
  --teal-dark: #085c56;
  --amber: #d99a45;
  --steel: #241932;
  --sage: #e6eef0;
  --shadow: 0 24px 80px rgba(45, 22, 72, 0.18);
  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;
  background:
    linear-gradient(180deg, #fbf8fd 0%, var(--paper) 420px),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body::selection {
  background: var(--sage);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(248, 245, 251, 0.84);
  border-bottom: 1px solid rgba(226, 220, 232, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.site-footer,
.metrics,
.availability {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.95rem;
}

nav {
  gap: clamp(14px, 3vw, 30px);
  color: #33263e;
  font-size: 0.94rem;
  font-weight: 650;
}

nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.nav-cta {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 60px;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 245, 251, 0.98) 0%, rgba(248, 245, 251, 0.9) 38%, rgba(248, 245, 251, 0.48) 66%, rgba(248, 245, 251, 0.12) 100%),
    linear-gradient(180deg, rgba(248, 245, 251, 0.08) 0%, rgba(248, 245, 251, 0.86) 100%),
    radial-gradient(circle at 82% 24%, rgba(217, 154, 69, 0.24), transparent 28%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 9vw, 7.3rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #403647;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(45, 22, 72, 0.28);
}

.button.primary:hover {
  background: var(--purple-deep);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--steel);
}

.availability {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 36px;
  width: min(430px, calc(100% - 40px));
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.availability span {
  color: var(--muted);
  font-size: 0.9rem;
}

.availability strong {
  color: var(--ink);
  font-size: 1.03rem;
}

.intro,
.section,
.band,
.cta,
.site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 92px);
  padding-top: 88px;
  padding-bottom: 58px;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.band h2,
.cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.band-copy p,
.experience-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px clamp(20px, 5vw, 72px);
  background: var(--line);
}

.metrics div {
  min-height: 132px;
  padding: 24px;
  background: var(--paper);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.metrics span {
  color: var(--muted);
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(45, 22, 72, 0.05);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 1.32rem;
  font-weight: 800;
}

.service-card h3,
.process-list h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-card p,
.process-list p {
  color: var(--muted);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  padding-top: 88px;
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(45, 22, 72, 0.96), rgba(27, 16, 47, 0.98)),
    var(--purple-deep);
  color: var(--white);
}

.band .section-kicker {
  color: #c7a8e9;
}

.band-copy p {
  color: #ddd3e8;
}

.process-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process-list div {
  padding: 26px;
  background: rgba(27, 16, 47, 0.58);
}

.process-list span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--amber);
  font-weight: 850;
}

.process-list p {
  color: #ddd3e8;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #3c2c48;
  font-weight: 700;
}

.cta {
  padding-top: 96px;
  padding-bottom: 102px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 22, 72, 0.96), rgba(8, 92, 86, 0.92)),
    var(--purple);
}

.cta .section-kicker {
  color: #dac5f0;
}

.cta h2 {
  max-width: 900px;
  margin-bottom: 22px;
}

.cta p {
  max-width: 700px;
  color: #eee5f6;
}

.cta .button {
  margin-top: 16px;
  background: var(--white);
  color: var(--purple);
  box-shadow: none;
}

.site-footer {
  justify-content: space-between;
  gap: 22px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--muted);
  background: #140d1f;
}

.site-footer div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

@media (max-width: 980px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .intro,
  .band,
  .split {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 850px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  nav {
    gap: 10px;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: 780px;
    padding: 104px 20px 170px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(248, 245, 251, 0.98) 0%, rgba(248, 245, 251, 0.9) 58%, rgba(248, 245, 251, 0.55) 100%),
      linear-gradient(180deg, rgba(248, 245, 251, 0.08) 0%, rgba(248, 245, 251, 0.92) 100%);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .availability {
    right: 20px;
    bottom: 28px;
  }

  .metrics,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .icon {
    margin-bottom: 32px;
  }

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