:root{
  --ink:#0f172a;       /* slate-900 */
  --muted:#475569;     /* slate-600 */
  --soft:#94a3b8;      /* slate-400 */
  --line:#e2e8f0;      /* slate-200 */
  --accent:#2aa7ff;    /* gentle blue */
  --bg:#ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system,
               Segoe UI, Roboto, Helvetica, Arial;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Page frame */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top navigation */
.topbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(42,167,255,0.12);
}

.navlinks {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* Hero wrapper */
.hero {
  position: relative;
  z-index: 1;
  padding: 48px 18px 28px;
}

/* Decorative background layers – must not block clicks */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: -20%;
  width: 140%;
  height: 220px;
  background: radial-gradient(
    closest-side,
    rgba(42,167,255,0.16),
    transparent 70%
  );
  filter: blur(2px);
  pointer-events: none;
}

.hero::before {
  top: -40px;
  transform: skewY(-6deg);
}

.hero::after {
  bottom: -60px;
  transform: skewY(6deg);
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero card */
.heroCard {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  padding: 34px 22px 22px;
  text-align: center;
}

/* Under construction label */
.uc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 12px;
  user-select: none;
}

.uc .pulseDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(42,167,255,0.55);
  animation: pulse 1.9s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(42,167,255,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(42,167,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,167,255,0); }
}

/* Typography */
.title {
  margin: 10px auto 6px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05;
  font-weight: 800;
}

.subtitle {
  margin: 14px auto 18px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.35;
  color: var(--muted);
  max-width: 42ch;
}

.mtp {
  margin: 18px auto;
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.2;
  font-weight: 800;
}

.sep {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 18px 0;
}

/* Johnny */
.johnnyWrap {
  display: flex;
  justify-content: center;
  margin: 16px 0 14px;
}

.johnny {
  width: 128px;
  height: auto;
  border-radius: 999px;
  border: 3px solid rgba(42,167,255,0.20);
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
  transform: translateZ(0);
}

/* Quote + body */
.quote {
  margin: 10px auto 0;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.25;
  font-weight: 800;
  max-width: 48ch;
}

.bodycopy {
  margin: 18px auto 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
}

.bullets li { margin: 10px 0; }
.bullets strong { color: var(--ink); }

.closer {
  margin: 18px 0 0;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* Email capture */
.capture {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.formRow {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.input {
  width: min(360px, 100%);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.btn {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn:hover { background: #0b1220; }

.note {
  font-size: 12px;
  color: var(--soft);
}

/* Footer */
.footer {
  text-align: center;
  padding: 18px;
  color: var(--soft);
  font-size: 12px;
}

.footer a { color: var(--muted); }

/* Mobile */
@media (max-width: 480px) {
  .johnny { width: 104px; }
}
