/* 08d0e18f.css - Navy teal low-poly triangles background with brown hacker theme, frosted glass */

/* Design tokens */
:root{
  --bg-teal-1: #0b3b2a;
  --bg-teal-2: #0a6e60;
  --brown: #6b3a1a;
  --brown-dark: #4b2b15;
  --card: rgba(255,255,255,.92);
  --card-border: rgba(0,0,0,.12);
  --text: #0f1a13;
  --muted: #3a2a0a;
  --shadow: 0 8px 28px rgba(0,0,0,.32);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #0b3b2a 0%, #0a6e60 60%, #0b2a2a 100%);
  /* teal low-poly triangles background */
  background-image:
    linear-gradient(135deg, rgba(0, 204, 170, .22) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0, 204, 170, .22) 25%, transparent 25%),
    linear-gradient(45deg, rgba(0, 0, 0, .18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0, 0, 0, .18) 25%, transparent 25%);
  background-size: 40px 40px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  /* magenta glow accents for cyberpunk vibe */
  background: radial-gradient(circle at 20% 10%, rgba(255,0,170,.15), transparent 40%),
              radial-gradient(circle at 80% 60%, rgba(0,255,212,.12), transparent 40%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.05);
}

header, main, footer { position: relative; z-index: 1; }

/* Header */
header {
  text-align: center;
  padding: 1rem 1rem 0.5rem;
}
header h2 {
  margin: 0;
  font-size: 0.95rem;
  color: #e9f5ef;
  opacity: .95;
  letter-spacing: .02em;
}

/* Main content area */
main { padding: 0 1rem; }

/* Hero area: mobile-first single column; two-column on larger screens */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
  justify-items: center;
  padding: 1.3rem;
}

/* Frosted glass card for text with brown accents */
.hero-copy {
  text-align: center;
  padding: 1.75rem;
  border-radius: var(--radius);
  max-width: 760px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(102,51,0,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 .5rem;
  color: #2b1b0a;
}
.subhead {
  font-size: 1rem;
  color: #2c1a0f;
  margin-bottom: 1.25rem;
}
.cta {
  display: inline-block;
  padding: 1rem 1.8rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a160e;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #a6ffbf 0%, #7bf0b0 60%, #4bd68e 100%);
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 6px 20px rgba(66, 231, 160, .6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(66,231,160,.8); }
.cta:focus-visible { outline: 3px solid #eaffff; outline-offset: 3px; }

/* Centerpiece image */
.hero-media {
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-media img {
  width: min(680px, 92%);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
  image-rendering: crisp-edges;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.92rem;
}
footer .advertisements a {
  color: #5bffd2;
  text-decoration: none;
  border-bottom: 1px dotted rgba(91, 255, 210, .5);
}
footer .advertisements a:hover { text-decoration: underline; }
footer .gratitude { margin-top: .5rem; color: #d9fff0; }

/* Desktop: two-column layout with image as centerpiece on the right, text on left */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    padding: 2rem;
  }
  .hero-copy { text-align: left; padding: 2rem; }
  .hero-copy h1 { font-size: 2.4rem; }
  .hero-media { align-self: center; }
  .hero-media img { width: 100%; max-width: 740px; }
}