:root {
  --graphite: #101316;
  --graphite-soft: #191e22;
  --ink: #172026;
  --muted: #5d666d;
  --line: #dfe5e8;
  --line-dark: rgba(255, 255, 255, 0.15);
  --paper: #ffffff;
  --paper-soft: #f5f8f8;
  --cyan: #00ffff;
  --cyan-deep: #00b7bd;
  --cyan-glass: rgba(0, 255, 255, 0.12);
  --radius: 8px;
  --button-radius: 999px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(16, 19, 22, 0.12);
  --shadow-soft: 0 18px 46px rgba(16, 19, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  body {
    animation: pageReveal 520ms ease-out both;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 54px);
  color: var(--paper);
  background: rgba(16, 19, 22, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 156px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--graphite);
  background: var(--cyan);
}

.brand-text {
  color: inherit;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.main-nav a,
.nav-parent {
  position: relative;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-parent:hover,
.nav-parent:focus-visible {
  color: var(--cyan);
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-group {
  position: relative;
  padding: 16px 0;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 250px;
  padding: 10px;
  color: var(--paper);
  background: rgba(16, 19, 22, 0.98);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--graphite);
  background: var(--cyan);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-group:hover .nav-parent::after,
.nav-group:focus-within .nav-parent::after,
.nav-group.is-open .nav-parent::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  color: var(--graphite);
  background: var(--cyan);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(0, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
}

.section-dark {
  color: var(--paper);
  background: var(--graphite);
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--paper-soft);
}

.hero {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 4vw, 54px) clamp(48px, 7vw, 92px);
}

.hero-grid,
.section,
.final-cta,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.hero-copy {
  max-width: 760px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-panel {
    animation: riseIn 620ms ease-out both;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 80ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 140ms;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 200ms;
  }

  .hero-copy > :nth-child(5) {
    animation-delay: 260ms;
  }

  .hero-panel {
    animation-delay: 180ms;
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.final-cta .eyebrow {
  color: var(--cyan);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(32px, 4.15vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.35;
}

.hero-note {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.button-primary {
  color: var(--graphite);
  background: var(--cyan);
}

.button-secondary {
  color: var(--paper);
  background: var(--graphite);
  border-color: rgba(0, 255, 255, 0.35);
}

.button-secondary:hover {
  color: var(--graphite);
  background: var(--cyan);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 19, 22, 0.22);
}

.button-outline::after,
.letter-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 160ms ease;
}

.button-outline:hover,
.letter-link:hover {
  border-color: var(--cyan-deep);
  background: var(--cyan-glass);
}

.button-outline:hover::after,
.letter-link:hover::after {
  transform: translateX(3px);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    var(--graphite-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
}

.signal-card {
  min-height: 116px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  max-width: 360px;
  font-size: 25px;
  line-height: 1.15;
}

.signal-card-main {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(0, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.signal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.075);
}

.signal-card-main strong {
  font-size: 34px;
}

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

.signal-row .signal-card {
  min-height: 136px;
}

.signal-row .signal-card strong {
  font-size: 18px;
}

.section {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 4vw, 54px);
}

.section-heading {
  margin-bottom: clamp(32px, 4vw, 54px);
}

.wide-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article {
  min-height: 218px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(0, 255, 255, 0.07), rgba(255, 255, 255, 0) 46%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 19, 22, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-grid article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(16, 19, 22, 0.035), rgba(255, 255, 255, 0) 52%),
    var(--paper-soft);
}

.problem-grid article:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(0, 183, 189, 0.08), rgba(255, 255, 255, 0) 50%),
    var(--paper);
}

.problem-grid article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(16, 19, 22, 0.04), rgba(0, 255, 255, 0.04)),
    var(--paper-soft);
}

.problem-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 183, 189, 0.55);
  box-shadow: var(--shadow-soft);
}

.problem-grid span,
.model-card span,
.service-card span,
.analytics-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.problem-grid p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  background: var(--paper-soft);
}

.sticky-heading {
  align-self: start;
  margin-bottom: 0;
}

.symptom-list {
  display: grid;
  gap: 14px;
}

.symptom-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.symptom-item span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--cyan);
}

.symptom-item p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 19px;
}

.model-section {
  width: 100%;
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px));
  padding-right: max(clamp(20px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px));
}

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

.model-card {
  min-height: 330px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.075);
}

.model-card h3 {
  color: var(--paper);
}

.model-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  min-height: 280px;
  padding: 24px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 3;
}

.service-card:nth-child(n + 3) {
  grid-column: span 2;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-deep);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.service-card p,
.case-card p,
.analytics-card p,
.about-strip p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.inline-cta {
  margin-top: 32px;
}

.case-grid,
.testimonial-grid,
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-action {
  margin-top: 34px;
}

.case-card,
.analytics-card,
.testimonial-grid figure {
  min-height: 270px;
  margin: 0;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 183, 189, 0.55);
  box-shadow: var(--shadow-soft);
}

.case-card:hover::before {
  transform: scaleX(1);
}

.card-label {
  margin-bottom: 54px;
  color: var(--cyan-deep) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonials-section {
  background: var(--graphite);
  color: var(--paper);
}

.testimonial-grid figure {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-dark);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.testimonial-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.testimonial-grid blockquote {
  min-height: 122px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.38;
}

.testimonial-grid figcaption {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.letter-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 9px 14px;
  color: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--button-radius);
  font-size: 13px;
  font-weight: 800;
}

.analytics-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.analytics-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 8vw, 110px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-strip p {
  max-width: 650px;
  font-size: 22px;
  line-height: 1.45;
}

.about-strip .button {
  margin-top: 8px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  max-width: none;
  padding: clamp(64px, 8vw, 104px) max(clamp(20px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px));
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.site-footer {
  width: 100%;
  max-width: none;
  padding: 56px max(clamp(20px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px)) 28px;
  color: var(--paper);
  background: var(--graphite);
  border-top: 1px solid var(--line-dark);
}

.site-footer .brand-mark {
  color: var(--graphite);
  background: var(--cyan);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 22px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  color: var(--paper) !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--button-radius);
  font-size: 13px;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: clamp(24px, 4vw, 54px);
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav h2 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cyan);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    padding: 0;
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.is-open .main-nav > a,
  .site-header.is-open .nav-parent {
    padding: 14px 0;
    border-top: 1px solid var(--line-dark);
  }

  .nav-group {
    padding: 0;
  }

  .nav-parent {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.68);
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    color: var(--cyan);
    background: transparent;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-group.is-open .nav-dropdown {
    display: grid;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-grid,
  .split-section,
  .about-strip,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 650px;
  }

  .problem-grid,
  .model-grid,
  .case-grid,
  .testimonial-grid,
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(n + 3) {
    grid-column: span 1;
  }

  .final-cta {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding: 58px 18px 42px;
  }

  .hero-grid {
    gap: 32px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .button,
  .header-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .signal-row,
  .problem-grid,
  .model-grid,
  .services-grid,
  .case-grid,
  .testimonial-grid,
  .analytics-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    margin-top: 38px;
  }

  .signal-card-main {
    min-height: 210px;
  }

  .signal-card-main strong {
    font-size: 27px;
  }

  .section {
    padding: 58px 18px;
  }

  .problem-grid article,
  .service-card,
  .case-card,
  .analytics-card,
  .testimonial-grid figure {
    min-height: auto;
  }

  .wide-heading {
    display: block;
  }

  .final-cta {
    padding: 58px 18px;
  }

}

.landing-hero {
  min-height: 720px;
  display: grid;
  align-items: center;
}

.landing-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-intro {
  border-bottom: 1px solid var(--line);
}

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

.intro-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.intro-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 183, 189, 0.55);
  box-shadow: var(--shadow-soft);
}

.intro-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.landing-services-list {
  display: grid;
  gap: 14px;
}

.landing-service {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(16, 19, 22, 0.055);
  scroll-margin-top: 110px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-service:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 183, 189, 0.55);
  box-shadow: var(--shadow-soft);
}

.service-index {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--graphite);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.landing-service h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.5vw, 32px);
}

.landing-service p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.landing-service ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.landing-service li {
  position: relative;
  padding-left: 18px;
}

.landing-service li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

@media (max-width: 1020px) {
  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-service {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .landing-service ul {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .landing-hero {
    min-height: auto;
  }

  .landing-metric-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

  .landing-service ul {
    grid-column: auto;
  }
}

@keyframes pageReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
