:root {
  --teal: #006984;
  --orange: #ff7f32;
  --dark: #363539;
  --light: #e6e6e6;
  --bg: ##ffffff;   /* always white */
  --text: #0b1220; /* dark text */
  --muted: #6b7280;
  --card: #f4f7f8;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, color-mix(in oklab, var(--teal) 20%, transparent), transparent),
              radial-gradient(900px 600px at 120% 10%, color-mix(in oklab, var(--orange) 18%, transparent), transparent),
              var(--bg);
  color: var(--text);
}

.page {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 200px;
  width: auto;

}

.mode-btn {
  border: 0;
  background: var(--card);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
  opacity: 0.9;
}
.mode-btn:hover { transform: translateY(-1px); opacity: 1; }

.main {
  max-width: 900px;          /* smaller width */
  margin: 10px auto 0;        /* add top margin so it sits below the logo */
  padding: 20px 16px;         /* reduce padding */
  display: grid;
  place-items: center;
  text-align: center;
}

.title {
  font-size: clamp(32px, 5vw, 52px); /* smaller max + min */
  line-height: 1.1;
  margin: 12px 0 6px;
  background: #006984;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.tagline {
  margin: 0 0 28px;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--muted);
}

.notify {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: min(680px, 100%);
  background: var(--card);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
  border: 1px solid color-mix(in oklab, var(--teal) 12%, transparent);
}

.notify input[type="email"] {
  border: 0;
  background: transparent;
  padding: 14px 14px 14px 16px;
  font-size: 16px;
  outline: none;
  color: var(--text);
}

.cta {
  background: linear-gradient(180deg, color-mix(in oklab, var(--orange) 96%, #fff 4%), var(--orange));
  border: none;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease;
}
.cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.cta:active { transform: translateY(0); }

.confirm {
  min-height: 28px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.links {
  margin-top: 16px;
  color: var(--muted);
}

.link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.link[aria-disabled="true"] {
  opacity: .6;
  pointer-events: none;
}

.dot { margin: 0 8px; opacity: .4; }

.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

/* Small animation pulse behind the logo */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta, .mode-btn { transition: none; }
}
