/* ac9402ee.css - orange diagonal geometry with indigo hacker vibe, frosted glass */

/* Palette for orange-geometric + indigo accent */
:root{
  --bg: #0b0f1e;
  --text: #e9fbff;
  --muted: #b8d6ff;
  --orange: #ff8a00;
  --orange-dark: #e67800;
  --indigo: #4b4bd8;
  --indigo-soft: rgba(75,75,216,0.25);
  --panel: rgba(255,255,255,0.92);
  --ring: rgba(255, 102, 0, 0.95);
  --radius: 14px;
  --shadow: 0 8px 28px rgba(0,0,0,.25);
}

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

html, body { height: 100%; }

/* Base: teal/orange? Here we implement orange geometric shapes overlay with indigo accents */
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  background: var(--bg);
  /* Orange diagonals + indigo glow layer to evoke a hacker aesthetic */
  background-image:
    linear-gradient(45deg, rgba(255, 138, 0, 0.25) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 138, 0, 0.25) 25%, transparent 25%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle animated glow overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 60% 20%, rgba(75,0,216,0.15), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255,153,0,0.10), transparent 40%);
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 0;
}

/* Header (frosted glass with orange tint) */
header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0,0,0,.15);
  backdrop-filter: blur(6px) saturate(1.2);
}

/* Brand badge */
.brand {
  font-weight: 900;
  color: #0b0b0f;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 140, 0, 0.25);
  border: 1px solid rgba(0,0,0,0.15);
  text-shadow: 0 0 6px rgba(255, 140, 0, 0.8);
}

/* Main content: centered frosted card */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  z-index: 1;
}

.hero {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  width: min(92%, 860px);
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px) saturate(1.2);
}

/* Heading and subhead: single H1 as required */
h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin: 0.25rem 0;
  color: #1a0f2a;
  text-shadow: 0 0 12px rgba(255, 140, 0, 0.6);
  line-height: 1.08;
}

/* Subhead styling */
.subhead {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #2d2d2d;
  margin: 0;
  opacity: 0.95;
}

/* Hero CTA: centerpiece, using the provided image and text */
.hero-cta {
  display: grid;
  grid-template-rows: auto auto;
  width: min(92%, 720px);
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px) saturate(1.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 0.25rem;
  align-items: center;
  justify-items: center;
}
.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.38);
  outline: none;
}
.hero-cta img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-text {
  padding: 0.75rem;
  font-weight: 700;
  color: #0b0b0b;
  text-align: center;
  background: rgba(240, 250, 240, 0.95);
  user-select: none;
}

/* Footer with small ad and gratitude message */
footer {
  padding: 1.25rem;
  text-align: center;
  color: #7a7a7a;
}
.footer-ad {
  display: inline-block;
  margin: 0.25rem auto 0.75rem;
}
.footer-ad a {
  color: #c65a00;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  font-size: 0.9rem;
}

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

/* Responsive tweaks */
@media (min-width: 640px) {
  .hero { padding: 3rem; }
}