:root {
  color-scheme: light;
  --ink: #102026;
  --muted: #5b6b73;
  --line: rgba(16, 32, 38, 0.12);
  --soft: #f3f8f7;
  --soft-2: #e7f0ee;
  --accent: #11b59a;
  --accent-dark: #067b6d;
  --coral: #ff7f66;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(13, 39, 42, 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(--ink);
  background: radial-gradient(circle at top left, rgba(17, 181, 154, 0.16), transparent 34rem), linear-gradient(180deg, #fbfefd 0%, #f5faf9 46%, #ffffff 100%);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 0.8rem;
  box-shadow: 0 12px 28px rgba(17, 181, 154, 0.25);
}

nav {
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--accent-dark);
}

.hero,
.section,
.contact-cta,
footer {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 850;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.5rem, 8vw, 7.7rem);
  line-height: 0.87;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

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

.lead {
  max-width: 43rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(16, 32, 38, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2.25rem;
  box-shadow: var(--shadow);
  background: var(--soft-2);
}

.metric-card {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(18rem, calc(100% - 2.4rem));
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(16, 32, 38, 0.16);
}

.metric-card strong {
  display: block;
  font-size: 2.15rem;
  letter-spacing: -0.05em;
}

.metric-card span,
.stats span,
.proof-list span,
footer span {
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.work-card,
.contact-cta,
.tinted {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(16, 32, 38, 0.08);
}

.card {
  min-height: 270px;
  padding: 1.4rem;
  border-radius: 1.5rem;
}

.icon {
  display: inline-flex;
  margin-bottom: 3.5rem;
  color: var(--accent-dark);
  font-weight: 900;
}

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

.tinted {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(17, 181, 154, 0.12), rgba(255, 127, 102, 0.08)), rgba(255, 255, 255, 0.76);
}

.proof-list {
  display: grid;
  gap: 0.9rem;
}

.proof-list div {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

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

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  overflow: hidden;
  border-radius: 1.5rem;
}

.work-card img {
  aspect-ratio: 1.25;
  height: auto;
}

.work-card div {
  padding: 1.2rem;
}

.image-panel {
  min-height: 520px;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.contact-cta {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: 2.2rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(17, 181, 154, 0.18), transparent 28rem), var(--ink);
}

.contact-cta h2,
.contact-cta .eyebrow {
  color: var(--white);
}

.contact-cta p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta .button.primary {
  margin-top: 1rem;
  color: var(--ink);
  background: var(--white);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .split,
  .three,
  .work-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-card,
  .image-panel {
    min-height: 420px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .site-header {
    position: static;
  }

  nav {
    font-size: 0.86rem;
  }
}
