/* navy waves with green hacker vibe - single stylesheet (mobile-first) */
:root {
  --navy: #0b1740;
  --navy-dark: #0a0f2a;
  --green: #2cff88;
  --green-dark: #0f9a53;
  --glow: rgba(0, 255, 170, 0.9);
  --glass: rgba(6, 6, 28, 0.65);
  --text: #e8fff5;
  --muted: #b8ffd8;
  --radius: 12px;
  --shadow: 0 12px 28px rgba(0,0,0,.25);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  color: var(--text);
  background: linear-gradient(135deg, var(--navy) 0%, #0b1b3a 60%, #07102e 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,255,140,.25) 0 25%, transparent 25%),
              radial-gradient(circle at 80% 30%, rgba(0,255,140,.15) 0 25%, transparent 25%);
  mix-blend-mode: screen;
  pointer-events: none;
  filter: saturate(110%);
  animation: wave 12s linear infinite;
  z-index: 0;
}
@keyframes wave {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  50% { transform: translateX(-40px); opacity: 1; }
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(7, 7, 32, 0.8);
  border-bottom: 1px solid rgba(0, 255, 140, 0.25);
  backdrop-filter: blur(6px);
}
.brand {
  font-weight: 900;
  color: #eaffff;
  text-shadow: 0 0 12px rgba(0,255,140,.8);
  letter-spacing: .4px;
  display: inline-block;
  font-size: 1.05rem;
}

/* Hero */
.hero { padding: 1rem; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.hero-media { width: 100%; display: flex; justify-content: center; }
.hero-media img {
  width: min(92vw, 720px);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: 0 18px 40px rgba(0, 255, 140, 0.25);
}
.hero-content {
  width: 100%;
  max-width: 640px;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: rgba(4, 8, 40, 0.70);
  border: 1px solid rgba(0, 255, 140, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  text-align: left;
  box-shadow: var(--shadow);
}
.hero-content h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin: 0 0 .5rem;
}
.subhead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.cta {
  display: inline-block;
  padding: .92rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  color: #042b18;
  background: linear-gradient(135deg, #13ffb0 0%, #0bdc7a 100%);
  border: 2px solid rgba(0, 210, 170, 0.95);
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  font-size: 1.02rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.45); }
.cta:focus-visible { outline: 3px solid #00ffbf; outline-offset: 2px; }

/* Footer advertisement */
.site-footer { padding: 1rem; text-align: center; background: rgba(3, 6, 20, 0.8); border-top: 1px solid rgba(0, 255, 140, 0.4); color: var(--text); }
.footer-ad {
  display: inline-block;
  padding: .6rem .9rem;
  margin: 0 .25rem 0.5rem;
  font-size: .95rem;
  color: var(--text);
  background: rgba(0,0,0,.25);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 140, .6);
}
.thank-you { font-size: .95rem; margin-top: .25rem; color: #d6ffd6; }

/* Desktop two-column layout for larger screens */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 2rem 4rem;
    align-items: center;
  }
  .subhead { font-size: 1.05rem; }
  .cta { font-size: 1.05rem; padding: 1rem 1.4rem; }
}