/* 836ee4d1.css - blue low-poly triangles background with magenta hacker theme, frosted glass, mobile-first */

/* Color system */
:root{
  --bg: #0a1f4a;            /* navy blue base */
  --triangle-a: #1f6bd6;     /* blue tones for triangles */
  --triangle-b: #2a88ff;
  --triangle-c: #1b4bd1;
  --magenta-start: #ff2bd4;
  --magenta-end: #b400e0;
  --text: #e8f3ff;
  --muted: #cbd7ff;
  --card: rgba(255,255,255,.08);
  --card-border: rgba(255,255,255,.25);
  --shadow: rgba(0,0,0,.25);
  --cta-border: rgba(255,255,255,.75);
  --focus: rgba(255, 0, 214, .6);
  --footer-text: #2b1f0a;
}

/* Global reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

/* Navy blue with blue low-poly feel via layered gradients to suggest triangles */
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  /* Simple blue low-poly illusion using layered gradients */
  background-image:
    linear-gradient(135deg, rgba(30,90,180,.25) 25%, rgba(30,90,180,0) 25%),
    linear-gradient(315deg, rgba(60,140,210,.25) 25%, rgba(60,140,210,0) 25%),
    linear-gradient(45deg, rgba(20,60,120,.25) 25%, rgba(20,60,120,0) 25%),
    linear-gradient(225deg, rgba(50,120,210,.25) 25%, rgba(50,120,210,0) 25%);
  background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
  background-position: 0 0, 30px 0, 0 30px, 30px 30px;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  letter-spacing: .2px;
}

/* Page structure helpers */
.site-header { height: 64px; }

/* Main content area */
main { width: 100%; }

/* Hero section: image centerpiece, prominent CTA, grid layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 1.25rem;
  padding: 28px 16px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  /* Frosted glass card */
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 22px 44px rgba(0,0,0,.28);
  overflow: hidden;
}

/* Centerpiece image styling */
.hero-image {
  width: min(92vw, 640px);
  height: auto;
  border-radius: 16px;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  object-fit: contain;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

/* Typography */
h1 {
  margin: 6px 0 0;
  font-size: 1.9rem;
  line-height: 1.15;
  color: #eaf4ff;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
h2 {
  margin: .25rem 0 0;
  font-size: 1.1rem;
  color: #cbdfff;
  opacity: .95;
}

/* CTA button: prominent centerpiece */
.cta {
  display: inline-block;
  margin-top: 14px;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c0410;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta-start) 0%, var(--magenta-end) 100%);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 6px 18px rgba(255,0,214,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,0,214,.85); }
.cta:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,0,214,.65), 0 14px 28px rgba(0,0,0,.25); }

/* Footer: small advertisement + closing note */
.site-footer {
  margin-top: 12px;
  padding: 12px 16px;
  text-align: left;
  color: var(--footer-text);
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
}
.site-footer .footer-ad a {
  color: #a6ffea;
  text-decoration: none;
  font-weight: 700;
}
.site-footer .footer-ad a:hover { text-decoration: underline; }
.closing-note { margin-top: 6px; font-size: .95rem; color: #2b210a; }

/* Focus ring for accessibility */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Responsive: two-column layout with image as centerpiece on larger screens */
@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    text-align: left;
    gap: 2rem;
    padding: 60px 48px;
  }
  .hero-image {
    width: 100%;
    max-width: 680px;
    justify-self: center;
  }
  .hero-grid > *:not(.hero-image) {
    grid-column: 2;
  }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.25rem; }
  .cta { font-size: 1.25rem; padding: 1.15rem 1.4rem; }
}
@media (min-width: 1024px) {
  .hero-grid { gap: 2.5rem; padding: 80px 72px; }
  .hero-image { max-width: 720px; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.3rem; }
  .cta { font-size: 1.3rem; }
}