﻿:root {
  --bg: #0b0b0f;
  --bg-soft: #12121a;
  --surface: #181824;
  --surface-strong: #202033;
  --text: #f4f7fb;
  --muted: #b5bfd1;
  --primary: #5a2d82;
  --secondary: #00e5ff;
  --accent: #8a4dff;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(90, 45, 130, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.14), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.img-fluid{
  max-width: 100%;
  width: fit-content;
}

section {
  padding: 5rem 0;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 15, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  width: 80px;
  height: 60px;
  place-items: center;
}

.brand-mark img{
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.16), rgba(90, 45, 130, 0.28));
  color: var(--secondary);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.93rem;
  padding: 0.65rem 0.8rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(0, 229, 255, 0.1);
  color: var(--secondary);
}

.nav-socials {
  flex-basis: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.nav-socials .social-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--secondary);
  padding: 0;
}

.nav-socials .social-icon:hover {
  border-color: rgba(0, 229, 255, 0.55);
  background: rgba(0, 229, 255, 0.1);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon[aria-label="Twitch"] svg,
.social-icon[aria-label="YouTube"] svg {
  width: 20px;
  height: 20px;
}

.social-icon .icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon .icon-cutout {
  fill: var(--bg);
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: auto;
  padding: 3rem 0 4rem;
  display: grid;
  align-items: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--primary);
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 20ch;
  font-size: clamp(3rem, 7vw, 4.5rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-title {
  display: none;
  max-width: none;
  margin-bottom: 0.85rem;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
}

.hero-headline {
  max-width: 20ch;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
}

.hero p,
.section-heading p,
.card p,
.impact-list p,
.contact-card p,
.contact-list,
.site-footer {
  color: var(--muted);
}

.hero p {
  max-width: 62ch;
  margin-top: 1.2rem;
  font-size: 1.12rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  padding: 0.85rem 1.15rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 229, 255, 0.18);
}

.btn-secondary {
  border-color: rgba(0, 229, 255, 0.42);
  background: rgba(11, 11, 15, 0.58);
  color: var(--secondary);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-card h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hero-card ul {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.hero-card li {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 0.8rem 0.9rem;
}

.stats-band {
  padding: 0 0 5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card,
.card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.stat-card {
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  color: var(--secondary);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 0.3rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split-section,
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.grid,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card,
.contact-card {
  padding: 1.35rem;
}

.card {
  min-height: 184px;
}

.card h3,
.contact-card h3,
.impact-list h3 {
  margin-bottom: 0.65rem;
}

.card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  min-width: 38px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.impact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.impact-list article {
  border-left: 3px solid var(--secondary);
  padding-left: 1rem;
}

.partnership-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(90, 45, 130, 0.22), rgba(0, 229, 255, 0.1)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.contact-card {
  align-self: stretch;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.contact-list a {
  color: var(--secondary);
}


.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--secondary);
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  border-color: rgba(0, 229, 255, 0.55);
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-1px);
}

.page-hero {
  padding: 5rem 0;
}

.site-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.site-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(11, 11, 15, 0.72);
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-form textarea {
  resize: vertical;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: rgba(0, 229, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}

.site-form button {
  justify-self: start;
  cursor: pointer;
}

.hidden-field {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer-grid a {
  color: var(--secondary);
  font-weight: 700;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#offer{
  background-image: linear-gradient(to bottom, #0b0b0f 10%, transparent, #0b0b0f 65%), url(/img/rightAlignedBanner.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#contact{
  background-image: linear-gradient(to bottom, #0b0b0f 20%, transparent, #0b0b0f 80%), url(/img/bottomBanner.png);
  background-repeat: no-repeat;
  background-size: contain;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 2.5rem;
    min-height: auto;
  }

  .hero-grid,
  .split-section,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: 14ch;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }

  section {
    padding: 4rem 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .brand-mark {
    width: 80px;
    height: 70px;
  }

  .brand > span:not(.brand-mark) {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 11, 15, 0.96);
    transition: max-height 0.24s ease;
  }

  body.nav-open .nav-links {
    max-height: 360px;
  }

  .nav-links a {
    border-radius: 0;
    padding: 1rem 4vw;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(1.7rem, 15vw, 2.5rem);
  }

  .hero-title {
    display: block;
    margin-bottom: 0.7rem;
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero-headline {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .grid,
  .feature-list,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .btn-group {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-actions {
    justify-items: stretch;
  }

  .btn {
    width: 100%;
  }
}




