:root {
  --bg: #fff7f9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #182230;
  --muted: #5f6b7a;
  --primary: #e91e63;
  --primary-dark: #bf1251;
  --accent: #ff6b6b;
  --accent-soft: #ffab91;
  --border: rgba(24, 34, 48, 0.08);
  --shadow: 0 18px 60px rgba(233, 30, 99, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 30, 99, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 171, 145, 0.22), transparent 28%),
    linear-gradient(180deg, #fffafc 0%, #fff7f9 100%);
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.08), transparent 0 24%),
    radial-gradient(circle at 80% 15%, rgba(255, 107, 107, 0.08), transparent 0 22%),
    radial-gradient(circle at 75% 75%, rgba(255, 171, 145, 0.09), transparent 0 20%);
  opacity: 0.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 249, 0.72);
  border-bottom: 1px solid rgba(24, 34, 48, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand small,
.footer-brand p {
  display: block;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.14);
}

.logo-sm {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:not(.btn):hover {
  color: var(--text);
  background: rgba(233, 30, 99, 0.08);
  transform: translateY(-1px);
}

.nav a.btn-primary,
.nav a.btn-dark {
  color: white;
}

.nav .btn {
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
}

.nav .btn-primary,
.nav .btn-dark {
  box-shadow: 0 12px 26px rgba(233, 30, 99, 0.2);
}

.section {
  padding: 78px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.72));
  border-top: 1px solid rgba(24, 34, 48, 0.04);
  border-bottom: 1px solid rgba(24, 34, 48, 0.04);
}

.hero {
  padding-top: 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-light {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

.hero-copy h1,
.section-head h2,
.split-panel h2,
.cta-inner h2 {
  margin: 16px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.section-head h2,
.split-panel h2,
.cta-inner h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  max-width: 18ch;
}

.lede,
.section-head p,
.split-panel p,
.feature-card p,
.moment-card p,
.timeline-item p,
.team-card p,
.card-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.lede {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span,
.card-badge,
.pill,
.metric strong {
  font-weight: 800;
}

.hero-points span,
.card-badge,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 34, 48, 0.06);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(24, 34, 48, 0.03);
}

.showcase-card,
.feature-card,
.moment-card,
.split-panel,
.timeline-item,
.team-card,
.page-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.showcase-card {
  padding: 28px;
}

.showcase-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.showcase-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(233, 30, 99, 0.18);
}

.mini-label {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
}

.showcase-top h2 {
  margin: 8px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.metric-grid {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(233, 30, 99, 0.06), rgba(255, 171, 145, 0.05));
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.metric strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-head.narrow {
  max-width: 700px;
}

.feature-layout,
.moments-grid,
.team-preview-grid {
  display: grid;
  gap: 18px;
}

.feature-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.moments-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.moment-card,
.team-card {
  padding: 26px;
}

.feature-card h3,
.moment-card h3,
.team-card h3,
.timeline-item h3,
.page-card h3 {
  margin: 16px 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
}

.card-badge {
  font-size: 12px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 24px;
  align-items: start;
}

.timeline-item span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(160deg, var(--primary), var(--accent));
  box-shadow: 0 14px 30px rgba(233, 30, 99, 0.24);
}

.split-panel {
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 14px;
  box-shadow: 0 16px 36px rgba(24, 34, 48, 0.16);
}

.avatar-gradient {
  background: linear-gradient(160deg, var(--primary), var(--accent));
}

.avatar-ghost {
  background: linear-gradient(160deg, #ffa53a, #ff6b6b);
}

.avatar-dummy {
  background: linear-gradient(160deg, #cdd5df, #8ca0b5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-dark {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 36px rgba(233, 30, 99, 0.24);
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(233, 30, 99, 0.16);
}

.btn-lg {
  padding: 16px 22px;
}

.cta-section {
  padding-bottom: 92px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(233, 30, 99, 0.96), rgba(255, 107, 107, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 70px rgba(233, 30, 99, 0.28);
  color: white;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(24, 34, 48, 0.05);
  background: rgba(255, 255, 255, 0.48);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 30px;
}

.page-card {
  padding: 28px;
}

.page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 18px;
}

.legal-copy h2,
.legal-copy h3,
.page-card h3 {
  font-family: 'Space Grotesk', sans-serif;
}

.legal-copy h2 {
  margin-top: 26px;
  margin-bottom: 8px;
}

.legal-copy h3 {
  margin-top: 20px;
  margin-bottom: 6px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-copy ul {
  margin-top: 10px;
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card.featured {
  grid-column: span 1;
}

.dev-highlight-card {
  padding: 34px;
  border: 1px solid rgba(233, 30, 99, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 249, 0.92));
  box-shadow:
    0 22px 48px rgba(24, 34, 48, 0.12),
    0 0 0 4px rgba(233, 30, 99, 0.08);
}

.dev-profile {
  gap: 22px;
}

.dev-photo {
  width: 132px;
  height: 132px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(233, 30, 99, 0.28);
  box-shadow: 0 18px 38px rgba(233, 30, 99, 0.2);
}

.profile-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.profile-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.08);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 800;
}

.muted-note {
  color: var(--muted);
}

.reveal {
  animation: rise 700ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-layout,
  .moments-grid,
  .split-panel,
  .cta-inner,
  .page-grid,
  .team-grid,
  .team-preview-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-end;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .section {
    padding: 62px 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 52px;
    height: 52px;
  }

  .feature-card,
  .moment-card,
  .team-card,
  .page-card,
  .split-panel,
  .showcase-card,
  .cta-inner {
    border-radius: 24px;
  }

  .dev-profile {
    flex-direction: column;
  }

  .dev-photo {
    width: 110px;
    height: 110px;
  }
}
