*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #080a12;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #f1f5f9;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Animated background ── */
.bg-orbs {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb1 { width: 700px; height: 700px; background: #14b8a6; top: -250px; left: -200px; animation-duration: 22s; }
.orb2 { width: 550px; height: 550px; background: #6366f1; bottom: -180px; right: -120px; animation-duration: 26s; animation-delay: -8s; }
.orb3 { width: 400px; height: 400px; background: #0ea5e9; top: 35%; left: 38%; animation-duration: 18s; animation-delay: -12s; opacity: 0.10; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(45px, 35px) scale(1.09); }
}

/* ── Layout ── */
.page {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Badge ── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #14b8a6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #14b8a6;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* ── Hero ── */
.hero { text-align: center; margin-bottom: 56px; }

.hero-logo {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  padding-bottom: 0.15em;
  background: linear-gradient(135deg, #4facfe 0%, #14b8a6 50%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: #94a3b8;
}

/* ── Section label ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

/* ── Grids ── */
.app-grid {
  display: grid;
  width: 100%;
  gap: 14px;
  margin-bottom: 44px;
}
.app-grid--web     { grid-template-columns: repeat(2, 1fr); }
.app-grid--flutter { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 740px) {
  .app-grid--flutter { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .app-grid--web,
  .app-grid--flutter { grid-template-columns: 1fr; }
}

/* ── Base card ── */
.app-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  color: inherit;
  text-decoration: none;
}
.app-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(20,184,166,0.22);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}

/* ── Web card (horizontal layout) ── */
.app-card--web {
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}
.app-card--web .app-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── App icon ── */
.app-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.app-icon--teal   { background: rgba(20,184,166,0.14);  border: 1px solid rgba(20,184,166,0.28); }
.app-icon--indigo { background: rgba(99,102,241,0.14);  border: 1px solid rgba(99,102,241,0.28); }
.app-icon--orange { background: rgba(249,115,22,0.14);  border: 1px solid rgba(249,115,22,0.28); }
.app-icon--blue   { background: rgba(59,130,246,0.14);  border: 1px solid rgba(59,130,246,0.28); }
.app-icon--green  { background: rgba(34,197,94,0.14);   border: 1px solid rgba(34,197,94,0.28); }
.app-icon--yellow { background: rgba(250,204,21,0.14);  border: 1px solid rgba(250,204,21,0.28); }
.app-icon--pink   { background: rgba(236,72,153,0.14);  border: 1px solid rgba(236,72,153,0.28); }
.app-icon--purple { background: rgba(168,85,247,0.14);  border: 1px solid rgba(168,85,247,0.28); }
.app-icon--cyan   { background: rgba(6,182,212,0.14);   border: 1px solid rgba(6,182,212,0.28); }

/* ── App name ── */
.app-name {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
}
.app-card--web .app-name { font-size: 1.2rem; }

/* ── App desc ── */
.app-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
}

/* ── Name row (name + badge inline) ── */
.app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Platform badge ── */
.app-platform {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 9px;
}
.app-platform--web     { background: rgba(20,184,166,0.12); color: #14b8a6; border: 1px solid rgba(20,184,166,0.25); }
.app-platform--flutter { background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.25); }

/* ── CTA arrow (web cards) ── */
.app-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #14b8a6;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  transition: gap 0.15s;
}
.app-card:hover .app-cta { gap: 9px; }

/* ── Separator ── */
.sep {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 44px;
}

/* ── Footer ── */
.footer {
  margin-top: 24px;
  font-size: 0.72rem;
  color: #334155;
  text-align: center;
}
