/* Skillflow Coming-Soon — minimal styles */
@font-face {
  font-family: 'Degular';
  src: url('fonts/Degular-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --sf-petroleum: #123C3F;
  --sf-aqua: #37C6C0;
  --sf-offwhite: #F6F3EC;
  --fg-2: #3D4F5A;
  --fg-3: #6B7A82;
  --font-brand: 'Degular', 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-ui: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--sf-offwhite);
  color: var(--sf-petroleum);
  font-family: var(--font-ui);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 64px 24px;
  text-align: center;
}

.logo {
  width: clamp(220px, 32vw, 360px);
  height: auto;
  display: block;
  animation: fadeUp 700ms cubic-bezier(.2,.7,.2,1) both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(55, 198, 192, 0.12);
  color: var(--sf-petroleum);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fadeUp 700ms 120ms cubic-bezier(.2,.7,.2,1) both;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--sf-aqua);
  box-shadow: 0 0 0 0 rgba(55, 198, 192, 0.6);
  animation: pulse 1.8s ease-out infinite;
}

h1 {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
  animation: fadeUp 800ms 200ms cubic-bezier(.2,.7,.2,1) both;
}
h1 .accent { color: var(--sf-aqua); }

p.tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 44ch;
  text-wrap: pretty;
  animation: fadeUp 800ms 320ms cubic-bezier(.2,.7,.2,1) both;
}

footer {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
  animation: fadeUp 700ms 500ms cubic-bezier(.2,.7,.2,1) both;
}
footer .meta { font-family: var(--font-mono); }
footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms, color 160ms;
}
footer a:hover { color: var(--sf-petroleum); border-bottom-color: var(--sf-aqua); }

@media (max-width: 560px) {
  footer { flex-direction: column; gap: 8px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(55, 198, 192, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(55, 198, 192, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(55, 198, 192, 0);    }
}
