:root {
  --ink: #151515;
  --muted: #696872;
  --line: #e6e4eb;
  --paper: #f8f7fb;
  --soft: #efedf4;
  --violet: #7a42ff;
  --violet-dark: #5a25d6;
  --graphite: #2a292d;
  --warm: #b98b6f;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(25, 22, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(230, 228, 235, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand-mark,
.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: #4d4b53;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.header-action {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--violet);
  transform: translateY(-1px);
}

.header-action {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-action:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 120px clamp(22px, 6vw, 92px) 72px;
  background: var(--graphite);
}

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

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.4);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d5c8ff;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 10vw, 8.8rem);
  line-height: 0.88;
  font-weight: 800;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.contact-card:hover,
.solution-card:hover,
.metric-tile:hover,
.process article:hover {
  transform: translateY(-6px);
}

.button.primary {
  background: var(--violet);
  color: var(--white);
}

.button.primary:hover {
  background: var(--violet-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: var(--white);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.section-band,
.process,
.metrics,
.feature-strip {
  padding: clamp(72px, 9vw, 132px) clamp(44px, 6vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  background: var(--paper);
  align-items: start;
}

.intro h2,
.section-heading h2,
.feature-strip h2,
.contact h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.02;
}

.intro-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  padding-top: 0;
  padding-bottom: 0;
}

.image-editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  padding: clamp(72px, 9vw, 132px) clamp(44px, 6vw, 92px);
  background: var(--white);
}

.image-editorial figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.image-editorial .editorial-large {
  grid-row: span 2;
  min-height: 540px;
}

.image-editorial img,
.feature-strip > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 360ms ease, filter 360ms ease;
}

.image-editorial figure:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.06);
}

.image-editorial figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-tile {
  min-height: 230px;
  padding: 34px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.metric-tile + .metric-tile {
  border-left: 1px solid var(--line);
}

.metric-tile:hover {
  background: #fbfaff;
  box-shadow: var(--shadow);
}

.metric-tile span {
  display: block;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 46px;
}

.metric-tile strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.metric-tile p,
.solution-card p,
.process p,
.contact p,
.feature-strip p {
  color: var(--muted);
  line-height: 1.75;
}

.solutions {
  background: var(--white);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}

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

.solution-card {
  min-height: 360px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  border-color: rgba(122, 66, 255, 0.36);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 84px;
  color: var(--violet);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.solution-card h3,
.process h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.feature-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: end;
  color: var(--white);
  background: var(--graphite);
  overflow: hidden;
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 18, 20, 0.86), rgba(18, 18, 20, 0.62)),
    linear-gradient(180deg, rgba(18, 18, 20, 0.12), rgba(18, 18, 20, 0.62));
}

.feature-strip > img {
  position: absolute;
  inset: 0;
}

.feature-strip > div,
.feature-strip > p {
  position: relative;
  z-index: 2;
}

.feature-strip p {
  color: rgba(255, 255, 255, 0.74);
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process article {
  min-height: 270px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process article:hover {
  box-shadow: var(--shadow);
}

.process span {
  display: inline-flex;
  margin-bottom: 74px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.75fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  background: var(--soft);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(244, 243, 249, 0.98), rgba(244, 243, 249, 0.86) 48%, rgba(244, 243, 249, 0.5)),
    linear-gradient(180deg, rgba(244, 243, 249, 0.94), rgba(244, 243, 249, 0.72));
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.82) contrast(1.02);
}

.contact-copy,
.contact-card {
  position: relative;
  z-index: 2;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-card:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
}

.contact h2 {
  margin-bottom: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 92px);
  background: #7f748f;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

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

  .nav-links {
    display: none;
  }

  .intro,
  .feature-strip,
  .contact,
  .image-editorial {
    grid-template-columns: 1fr;
  }

  .image-editorial {
    grid-template-rows: none;
  }

  .image-editorial .editorial-large {
    grid-row: auto;
    min-height: 360px;
  }

  .metrics,
  .solution-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .metric-tile,
  .solution-card,
  .process article {
    min-height: auto;
  }

  .metric-tile span,
  .card-icon,
  .process span {
    margin-bottom: 34px;
  }
}

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

  .brand span {
    display: none;
  }

  .header-action {
    padding: 9px 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 20px 52px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section-band,
  .process,
  .metrics,
  .feature-strip,
  .image-editorial {
    padding-left: 20px;
    padding-right: 20px;
  }

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