:root {
  --bg: #f3f5f3;
  --bg-strong: #07151c;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #0d2530;
  --text: #13242c;
  --text-soft: #5f727a;
  --line: rgba(19, 36, 44, 0.12);
  --brand: #0b7ea1;
  --brand-deep: #094e68;
  --accent: #d6ff72;
  --accent-soft: #eff8d1;
  --shadow: 0 24px 70px rgba(8, 24, 31, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 255, 114, 0.5), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 126, 161, 0.16), transparent 24%),
    linear-gradient(180deg, #eef4f2 0%, var(--bg) 55%, #eef1ed 100%);
  color: var(--text);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 44px rgba(7, 21, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

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

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--text-soft);
  font-size: 0.78rem;
  margin-top: 2px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: white;
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 68px 0 48px;
}

.eyebrow,
.card-tag,
.hero-card-caption span,
.hero-metric span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--brand);
  margin: 0 0 18px;
}

.hero h1,
.section h2,
.callout h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.3rem, 6vw, 6.3rem);
  max-width: 12ch;
}

.hero h1 span {
  color: var(--brand);
}

.hero-text,
.section-heading p,
.service-card p,
.timeline p,
.feature-grid p,
.case-card p,
.callout p,
.site-footer p,
.intro-strip p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.06rem;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: 0 18px 38px rgba(11, 126, 161, 0.25);
}

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

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(214, 255, 114, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card,
.hero-metric,
.service-card,
.feature-grid article,
.case-card,
.callout,
.intro-strip {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card-main {
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-xl);
}

.hero-card-main img {
  height: 100%;
  object-fit: cover;
}

.hero-card-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 21, 28, 0.72);
  color: white;
}

.hero-card-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.hero-card-float {
  position: absolute;
  right: -22px;
  top: 38px;
  width: min(280px, 72%);
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(214, 255, 114, 0.92), rgba(255, 255, 255, 0.94));
}

.hero-card-float p,
.hero-metric p {
  margin: 0 0 8px;
  color: rgba(19, 36, 44, 0.64);
}

.hero-card-float strong,
.hero-metric strong {
  font-size: 1.1rem;
  line-height: 1.4;
}

.hero-metric {
  position: absolute;
  left: -18px;
  bottom: 34px;
  width: min(250px, 68%);
  padding: 20px 22px;
  border-radius: 24px;
}

.intro-strip {
  margin: 8px 0 42px;
  padding: 26px 28px;
  border-radius: 26px;
}

.intro-strip p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  max-width: 52ch;
  color: var(--text);
}

.section {
  padding: 70px 0;
}

.section-dark {
  margin: 22px 0;
  padding: 70px 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(214, 255, 114, 0.12), transparent 24%),
    linear-gradient(180deg, #08212b 0%, var(--bg-strong) 100%);
  color: white;
}

.section-dark .section-heading p,
.section-dark .timeline p {
  color: rgba(233, 242, 245, 0.72);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 72ch;
}

.section-heading.narrow {
  max-width: 58ch;
}

.section h2,
.callout h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

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

.service-card {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 28px;
}

.service-card-large {
  grid-column: span 6;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card > div {
  padding: 24px;
}

.card-tag {
  color: var(--brand);
  margin-bottom: 10px;
}

.service-card h3,
.timeline h3,
.feature-grid h3,
.case-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.service-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 209, 0.9));
}

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

.timeline article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

.feature-grid article {
  padding: 24px;
  border-radius: 24px;
}

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

.case-card {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 24px;
}

.case-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-card > div {
  padding: 22px;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 26px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-block {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-footer p {
  margin: 0;
}

.footer-block p + p {
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

@media (max-width: 1100px) {
  .hero,
  .timeline,
  .feature-grid,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .service-card,
  .service-card-large,
  .case-card {
    grid-column: span 6;
  }

  .timeline,
  .feature-grid {
    display: grid;
  }

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

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

  .callout,
  .site-footer {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .site-header {
    position: static;
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

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

  .hero-card-float,
  .hero-metric {
    position: absolute;
    width: auto;
    max-width: calc(100% - 28px);
  }

  .hero-card-float {
    right: 14px;
    top: 14px;
  }

  .hero-metric {
    left: 14px;
    bottom: 14px;
  }

  .section {
    padding: 46px 0;
  }

  .section-dark {
    padding: 46px 18px;
    border-radius: 28px;
  }

  .service-grid,
  .case-grid,
  .timeline,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-large,
  .case-card {
    grid-column: auto;
  }

  .callout {
    padding: 24px;
  }
}
