/* MyEducationHero Coming Soon Styles */
:root {
  --brand-start: #0ea5e9; /* sky-500 */
  --brand-end: #22c55e;   /* green-500 */
  --text: #0f172a;        /* slate-900 */
  --muted: #334155;       /* slate-700 */
  --bg: #ffffff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(1000px 500px at -10% 20%, rgba(14, 165, 233, 0.12), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 16px;
}

.card {
  width: 100%;
  max-width: 860px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2px;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

main {
  margin-top: 18px;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 12px 0 12px;
}

.tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  margin: 0 0 24px;
}

.notify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 200ms ease, transform 120ms ease;
}

.notify:hover { box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08); }
.notify:active { transform: translateY(1px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
  font-weight: 600;
  font-size: 13px;
}

.footer {
  margin-top: 28px;
  font-size: 13px;
  color: #475569;
}

@media (min-width: 720px) {
  .card { padding: 36px 36px; }
  .brand img { width: 48px; height: 48px; }
  .brand-name { font-size: 22px; }
}



