:root {
  --bg: #f5f7fa;
  --bg-soft: #e9eef6;
  --text: #0b1320;
  --muted: #435063;
  --primary: #0f766e;
  --primary-strong: #115e59;
  --accent: #e76f51;
  --card: #ffffff;
  --border: rgba(11, 19, 32, 0.09);
  --shadow: 0 14px 38px rgba(7, 12, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 16%, rgba(15, 118, 110, 0.16), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(231, 111, 81, 0.18), transparent 35%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.2;
}

.bg-shape-one {
  width: 360px;
  height: 360px;
  background: #0f766e;
  top: -120px;
  left: -90px;
}

.bg-shape-two {
  width: 460px;
  height: 460px;
  background: #e76f51;
  bottom: -180px;
  right: -120px;
}

.site-header,
main,
.site-footer {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  box-shadow: 0 10px 26px rgba(13, 27, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #253245;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--text);
  color: #ffffff;
  padding: 0.55rem 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.25);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.8rem 1.2rem;
}

.hero {
  padding: 5.4rem 0 3.2rem;
}

.eyebrow {
  margin: 0;
  color: var(--primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.1vw, 3.8rem);
  margin: 0.55rem 0 1rem;
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-row {
  margin-top: 1.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #334155;
  font-weight: 600;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.section {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.section-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
}

.service-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.app-card,
.timeline article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.card p,
.app-card p,
.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.apps-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.app-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
}

.app-card-top a {
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration: none;
}

.app-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.app-card li {
  margin: 0.4rem 0;
}

.app-card.featured {
  border: 1px solid rgba(15, 118, 110, 0.34);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), #ffffff);
}

.timeline {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article span {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 700px;
  margin: 0.8rem auto 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #334155;
}

.site-footer a {
  color: #0f172a;
  margin-left: 0.85rem;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .main-nav a:not(.btn-nav) {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(1100px, calc(100% - 1.3rem));
  }

  .hero {
    padding-top: 4.4rem;
  }

  .section {
    padding: 1.3rem;
    margin-top: 1.5rem;
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
