:root {
  --teal-deep: #0a4445;
  --teal-mid: #217475;
  --teal-light: #2d9496;
  --bg-dark: #071e1f;
  --bg-dark-2: #0d2b2c;
  --green-accent: #7abe42;
  --green-dark: #5a9430;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.45);

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 80% 0%, var(--bg-dark-2) 0%, var(--bg-dark) 55%);
  color: var(--white);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Faint background grid, echoes circuit motif without competing with type */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(122, 190, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 190, 66, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 75% 15%, black 0%, transparent 65%);
}

/* ---------- Toolbar ---------- */
.toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 64px) 0;
}

.toolbar-logo {
  height: 34px;
  width: auto;
  display: block;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  opacity: 0.85;
}
.menu-btn svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 64px clamp(20px, 6vw, 64px) 48px;
  text-align: left;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eyebrow-line {
  height: 1px;
  width: 32px;
  background: var(--green-accent);
  flex: 0 0 auto;
}

.eyebrow-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.headline {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}

.headline span {
  display: block;
  color: var(--white);
}

.headline .accent {
  color: var(--green-accent);
}

.subhead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 32px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid rgba(122, 190, 66, 0.4);
  background: rgba(122, 190, 66, 0.08);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 28px;
}

.coming-soon-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 0 rgba(122, 190, 66, 0.55);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(122, 190, 66, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(122, 190, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(122, 190, 66, 0); }
}

/* ---------- Notify form ---------- */
.notify-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  flex-wrap: wrap;
}

/* Honeypot field — visually hidden but present in the DOM for bots to fill */
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notify-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 15px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.notify-form input[type="email"]::placeholder {
  color: var(--text-faint);
}

.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--green-accent);
  background: rgba(255, 255, 255, 0.08);
}

.notify-form button {
  flex: 0 0 auto;
  padding: 15px 28px;
  border: none;
  border-radius: 6px;
  background: var(--green-accent);
  color: var(--teal-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 190, 66, 0.3);
  background: var(--green-dark);
  color: var(--white);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.form-note.success { color: var(--green-accent); }
.form-note.error { color: #e57373; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px 28px;
  font-size: 0.78rem;
  color: var(--text-faint);
  font-family: var(--font-body);
}

.site-footer a {
  color: var(--text-faint);
  text-decoration: none;
}
.site-footer a:hover { color: var(--green-accent); }

.footer-sep { opacity: 0.5; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .toolbar { padding: 22px 20px 0; }
  .toolbar-logo { height: 28px; }
  .hero { padding: 44px 20px 36px; text-align: left; }
  .eyebrow-row { margin-bottom: 22px; }
  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }
}

/* ---------- Print ---------- */
@media print {
  .no-print { display: none !important; }
  .bg-grid { display: none !important; }
  body { background: var(--white); color: var(--teal-deep); }
  .headline span { color: var(--teal-deep); }
  .headline .accent { color: var(--green-dark); }
  .subhead { color: #333; }
  .coming-soon-badge, .notify-form { display: none !important; }
  .hero { padding: 40px 24px; }
}
