@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #0d1b2a;
  --muted: #52616b;
  --blue: #1273ea;
  --blue-dark: #0b3d91;
  --teal: #18a999;
  --cream: #f3f6fb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #e9f3ff, #f7fbff 55%, #ffffff 100%);
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.hero {
  background: linear-gradient(135deg, rgba(18, 115, 234, 0.12), rgba(24, 169, 153, 0.12));
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(18, 115, 234, 0.3), transparent 70%);
  border-radius: 50%;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 600;
}

.hero-content {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  background: var(--card);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(18, 115, 234, 0.12);
  font-weight: 600;
  color: var(--blue-dark);
}

.hero-panel {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.panel-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--blue-dark);
}

.panel-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  margin-top: 36px;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card,
.tech-card,
.screen-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.feature-card p,
.tech-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.screen-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.screen-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
  border: none;
}

.screen-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.tech-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag-list span {
  background: rgba(24, 169, 153, 0.12);
  color: var(--blue-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.footer {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    margin-top: 16px;
  }

  .hero {
    padding: 24px;
  }

  .footer {
    gap: 8px;
  }
}
