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

:root {
  --bg-top: #f5f9ff;
  --bg-bottom: #eef4fb;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --text: #0e1f33;
  --muted: #5b6d82;
  --line: #d8e3f0;
  --accent: #0f8fcb;
  --accent-strong: #0a6ea0;
  --accent-soft: #ddf4ff;
  --success: #0ea574;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-sm: 0 8px 24px rgba(24, 55, 93, 0.08);
  --shadow-lg: 0 18px 40px rgba(18, 46, 80, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -5%, rgba(25, 170, 214, 0.2), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(14, 165, 116, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.58;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(8px);
  background: rgba(245, 250, 255, 0.88);
  border-bottom: 1px solid rgba(203, 220, 238, 0.85);
}

.site-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.branding {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f8fcb 0%, #26b48f 100%);
  color: #ffffff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(23, 95, 140, 0.26);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  gap: 0.7rem;
}

.nav-link {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 650;
  font-size: 0.9rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

main {
  padding: 2rem 0 3.3rem;
}

.container > * {
  animation: rise-fade 440ms ease both;
}

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

.container > *:nth-child(3) {
  animation-delay: 130ms;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.panel + .panel {
  margin-top: 1rem;
}

.hero {
  padding: 1.6rem;
  background:
    linear-gradient(155deg, rgba(221, 244, 255, 0.75), rgba(229, 244, 239, 0.68)),
    #ffffff;
}

.hero-content h1 {
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.18;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.9rem, 2vw + 1.1rem, 2.7rem);
}

.hero-content p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent-strong);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.section-title {
  margin-top: 0;
  margin-bottom: 0.42rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.33rem;
}

.section-description {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 750;
}

.stat-value {
  margin: 0.32rem 0 0;
  font-size: 1.08rem;
  font-weight: 780;
  color: var(--text);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 0.9rem;
}

.app-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.app-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
}

.app-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.app-card-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(28, 58, 92, 0.16);
}

.app-card-heading h3 {
  margin: 0;
  font-size: 1.03rem;
}

.app-card-tagline {
  margin-top: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.app-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, #22b8c8 100%);
  color: #ffffff;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(16, 114, 162, 0.28);
}

.button-subtle {
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}

.button-subtle:hover {
  background: #f4f9ff;
}

.button-disabled {
  opacity: 0.62;
  pointer-events: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 800;
  border: 1px solid transparent;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-live {
  background: #e5f8f0;
  border-color: #abdcc7;
  color: #1f7a57;
}

.status-beta {
  background: #e8f2ff;
  border-color: #b4c9ef;
  color: #2a5da5;
}

.status-coming-soon {
  background: #fff7df;
  border-color: #ecd79d;
  color: #7c5c13;
}

.status-template {
  background: #edf3fa;
  border-color: #c4d5e9;
  color: #2a5485;
}

.site-footer {
  border-top: 1px solid rgba(196, 214, 231, 0.88);
  padding: 1.2rem 0 2rem;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.list-clean {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

.list-clean li + li {
  margin-top: 0.35rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin-top: 0.95rem;
}

.muted {
  color: var(--muted);
}

.empty-state {
  margin: 0;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--accent-strong);
  font-weight: 650;
}

.hidden {
  display: none !important;
}

@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 720px) {
  .site-header-inner {
    min-height: 74px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  main {
    padding-top: 1.35rem;
  }

  .panel {
    padding: 1rem;
  }

  .hero {
    padding: 1.15rem;
  }
}
