:root {
  --bg: #eef1ec;
  --bg-soft: #e2e8e1;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(248, 251, 248, 0.96);
  --line: rgba(24, 49, 67, 0.11);
  --text: #112537;
  --muted: #617282;
  --navy: #10355c;
  --green: #00d26a;
  --green-soft: rgba(0, 210, 106, 0.09);
  --shadow: 0 24px 60px rgba(20, 42, 58, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 210, 106, 0.1), transparent 22%),
    radial-gradient(circle at left top, rgba(16, 53, 92, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f8f5 0%, #eef1ec 48%, #e6ebe5 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 53, 92, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 53, 92, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

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

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(16, 53, 92, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
}

.brand div {
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(16, 53, 92, 0.08);
}

.brand span,
.eyebrow,
.service-card span,
.timeline span,
.trust-band span {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
}

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

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 52px;
  padding: 72px 0 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.74rem;
  color: var(--navy);
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.9vw, 4.75rem);
  max-width: 10ch;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.service-card p,
.feature-panel p,
.stack-showcase p,
.industry-note p,
.timeline p,
.cta-card p,
.trust-band p,
.hero-points li {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #021108;
  background: linear-gradient(135deg, var(--green), #5dffa8);
  box-shadow: 0 18px 40px rgba(0, 210, 106, 0.22);
}

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

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  max-width: 52ch;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 210, 106, 0.12);
}

.hero-panel {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -30px auto auto -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 53, 92, 0.08), transparent 72%);
  z-index: -1;
}

.hero-card,
.service-card,
.feature-panel,
.industries-card,
.timeline article,
.cta-card,
.trust-band,
.stack-showcase article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 246, 0.98));
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: auto -20% 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 106, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-card p {
  margin: 0;
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 14px 0 0;
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-card-divider {
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(0, 210, 106, 0.7), rgba(0, 210, 106, 0));
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.metric-grid article {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(16, 53, 92, 0.03);
  border: 1px solid rgba(16, 53, 92, 0.06);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 10px;
}

.metric-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.signal-grid {
  position: absolute;
  inset: 9% 2% 2% 14%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 78%;
  height: 78%;
  opacity: 0.65;
}

.signal-grid span {
  border-radius: 22px;
  border: 1px solid rgba(0, 210, 106, 0.18);
  background:
    linear-gradient(180deg, rgba(0, 210, 106, 0.08), transparent),
    rgba(16, 53, 92, 0.02);
}

.pulse {
  animation: pulseCard 5.2s ease-in-out infinite;
}

@keyframes pulseCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}

.trust-band span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.72rem;
}

.trust-band p {
  margin: 0;
}

.section {
  padding: 104px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  margin-top: 10px;
}

.section-heading p {
  margin-top: 18px;
  font-size: 1.02rem;
}

.narrow {
  max-width: 720px;
}

.service-grid,
.stack-showcase,
.timeline {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

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

.service-card {
  padding: 26px;
  border-radius: var(--radius-md);
}

.service-card span {
  color: var(--green);
  font-size: 0.72rem;
}

.service-card h3,
.feature-panel h3,
.stack-showcase h3,
.timeline h3,
.industry-note strong {
  margin: 16px 0 0;
  font-size: 1.25rem;
}

.service-card p,
.feature-panel p,
.industry-note p,
.timeline p {
  margin: 14px 0 0;
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card li {
  color: var(--text);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.capability-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.feature-panel,
.stack-showcase article,
.timeline article,
.industries-card,
.cta-card {
  border-radius: var(--radius-lg);
}

.feature-panel {
  padding: 28px;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip-wrap span,
.industry-list span {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 210, 106, 0.18);
  background: var(--green-soft);
  color: var(--navy);
  font-size: 0.92rem;
}

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

.stack-showcase article {
  padding: 24px;
}

.stack-showcase p {
  margin-top: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.split-copy {
  padding-right: 18px;
}

.industries-card {
  padding: 28px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-note {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

.timeline article {
  padding: 24px;
}

.timeline span {
  font-size: 0.72rem;
  color: var(--green);
}

.cta-section {
  padding-bottom: 28px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 32px;
  overflow: hidden;
}

.footer {
  display: grid;
  gap: 26px;
  margin-top: 36px;
  padding: 34px 32px 28px;
  border: 1px solid rgba(16, 53, 92, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(0, 210, 106, 0.08), transparent 24%),
    linear-gradient(180deg, #0c1d2d 0%, #10263b 100%);
  box-shadow: 0 22px 48px rgba(16, 53, 92, 0.14);
  color: #c7d4de;
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-brand p {
  margin: 10px 0 0;
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #9fb2c2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.footer-grid p {
  margin: 0 0 10px;
  line-height: 1.7;
  color: #dbe5ec;
}

.footer-grid a {
  color: #ffffff;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8fa3b4;
  font-size: 0.9rem;
}

.service-card,
.feature-panel,
.stack-showcase article,
.timeline article {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.feature-panel:hover,
.stack-showcase article:hover,
.timeline article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 106, 0.24);
  box-shadow: 0 28px 52px rgba(16, 53, 92, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    gap: 18px;
    padding: 14px 18px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 0.9rem;
  }

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

  .hero {
    gap: 36px;
    padding: 56px 0 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-text,
  .hero-points {
    max-width: 100%;
  }

  .service-grid,
  .timeline,
  .trust-band,
  .capability-layout,
  .stack-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: 380px;
  }

  .split-copy {
    padding-right: 0;
  }

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

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

@media (max-width: 900px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .topbar {
    border-radius: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .nav.is-open {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 8vw, 4.15rem);
    max-width: 12ch;
  }

  .metric-grid article {
    grid-template-columns: 1fr;
  }

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

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

  .topbar {
    padding: 14px 16px;
  }

  .hero {
    gap: 28px;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .service-grid,
  .timeline,
  .trust-band,
  .capability-layout,
  .stack-showcase {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 84px;
  }

  .hero-panel {
    min-height: 300px;
  }

  .footer {
    padding: 22px 18px;
  }

  .footer-top,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}
