

:root {
  --bg: #131313;
  --surface: #1C1C1C;
  --surface-alt: #262626;
  --primary: #A3E635;
  --primary-hover: #84CC16;
  --secondary: #22D3EE;
  --accent: #F472B6;
  --text: #FAFAFA;
  --text-secondary: #C4C4C4;
  --text-muted: #7C7C7C;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 8px;
  --font-display: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  --font-body: "Gill Sans", "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  --max-width: 720px;
  --header-h: 4rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(163, 230, 53, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(244, 114, 182, 0.05) 0%, transparent 45%),
    var(--bg);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

code {
  font-size: 0.9em;
  color: var(--secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(19, 19, 19, 0.85);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  color: var(--text);
}

.logo:hover span {
  color: var(--primary-hover);
}

.nav-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary);
}


.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem 4rem;
  min-height: calc(100vh - var(--header-h) - 5rem);
}

.hero__content {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.15s;
}

.hero__brand span {
  color: var(--primary);
  display: inline-block;
  animation: softPulse 3.5s ease-in-out infinite 1.2s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero__copy {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 2.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}


.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  max-width: 26rem;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.notify__input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.8125rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.notify__input::placeholder {
  color: var(--text-muted);
}

.notify__input:hover {
  border-color: rgba(163, 230, 53, 0.25);
}

.notify__input:focus {
  border-color: var(--primary);
  background: var(--surface-alt);
  outline: none;
}

.notify__btn {
  flex: 0 0 auto;
  padding: 0.8125rem 1.375rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #131313;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.notify__btn:hover {
  background: var(--primary-hover);
}

.notify__btn:active {
  transform: scale(0.98);
}

.notify__note {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.notify__msg {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary);
  min-height: 1.25em;
}


.legal {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}


.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 1.25rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--primary);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cookie-banner__text {
  flex: 1 1 16rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.cookie-btn {
  padding: 0.625rem 1.125rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-btn--accept {
  background: var(--primary);
  color: #131313;
  border-color: var(--primary);
}

.cookie-btn--accept:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}

.cookie-btn--decline:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: var(--surface-alt);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__brand,
  .hero__title,
  .hero__copy,
  .notify {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .notify {
    flex-direction: column;
  }

  .notify__btn {
    width: 100%;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
