/*
Theme Name: Professor Macre Coming Soon
Theme URI: https://professormacre.com/
Author: OpenAI
Description: A custom single-page coming soon WordPress theme for Professor Macre.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: professor-macre-coming-soon
*/

:root {
  --text: #f5f7fb;
  --muted: #b6bdc9;
  --accent: #ff8c00;
  --accent-soft: rgba(255, 140, 0, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 140, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #0b0d12 0%, #050608 100%);
  color: var(--text);
}

body.professor-macre-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.shell {
  width: 100%;
  max-width: 1120px;
  position: relative;
}

.shell::before,
.shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.shell::before {
  width: 260px;
  height: 260px;
  background: rgba(255, 140, 0, 0.18);
  top: -30px;
  left: -40px;
}

.shell::after {
  width: 220px;
  height: 220px;
  background: rgba(255, 140, 0, 0.10);
  bottom: -20px;
  right: 30px;
}

.card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 153, 0, 0.18);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 640px;
}

.left, .right { padding: 56px; }

.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 140, 0, 0.2);
  color: #ffd8a3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 140, 0, 0.8);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

h1 span { color: var(--accent); }

p.lead {
  margin: 0;
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #e8edf7;
  font-weight: 600;
  text-align: center;
}

.right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.logo-panel {
  width: 100%;
  max-width: 470px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.logo-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #050608;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-note {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-note {
  margin-top: 28px;
  color: rgba(255,255,255,0.42);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .left {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .left, .right { padding: 34px 24px; }
  .highlights { grid-template-columns: 1fr; }
}
