﻿:root {
  --bg: #090f1f;
  --bg-elev: #121b33;
  --card: #162241;
  --text: #ebf2ff;
  --muted: #b7c6e4;
  --primary: #25d0a5;
  --primary-dark: #13b28b;
  --accent: #ffd271;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(37, 208, 165, 0.28), transparent 38%),
    radial-gradient(circle at 88% 10%, rgba(255, 210, 113, 0.19), transparent 35%),
    linear-gradient(180deg, #090f1f 0%, #0b1326 50%, #0b0f1d 100%);
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: "Spectral", Georgia, serif;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 12px;
  z-index: 1000;
  background: #ffffff;
  color: #111111;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Spectral", Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
}

.kicker {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 210, 113, 0.32);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(1.01rem, 2.1vw, 1.16rem);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--primary), #4de9c2);
  color: #08211c;
  box-shadow: 0 12px 26px rgba(19, 178, 139, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(130deg, #31deaf, #7af2d4);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-list li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(25, 40, 70, 0.9), rgba(20, 30, 52, 0.9));
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.5rem;
}

.hero-card-note {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.prose {
  max-width: 900px;
}

.prose h3 {
  margin-top: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(27, 41, 73, 0.85), rgba(15, 25, 48, 0.85));
  padding: 18px;
}

.card h3 {
  margin-bottom: 8px;
}

.steps {
  margin: 18px 0;
  padding-left: 1.2rem;
  max-width: 760px;
  color: var(--text);
}

.steps li {
  margin-bottom: 8px;
  padding-left: 3px;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 210, 113, 0.09);
  max-width: 780px;
}

.cta-band {
  padding: 28px 0;
}

.cta-band-inner {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(37, 208, 165, 0.3);
  background: linear-gradient(140deg, rgba(37, 208, 165, 0.13), rgba(255, 210, 113, 0.08));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.faq-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: clip;
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.faq-answer {
  padding: 0 16px 14px;
}

.js .faq-answer {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.js .faq-item.is-open .faq-answer {
  max-height: 180px;
  padding: 0 16px 14px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 20, 0.78);
  padding: 42px 0 20px;
  margin-top: 34px;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-title {
  font-size: 1.5rem;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-grid a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 7px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent);
}

.copyright {
  text-align: center;
  color: var(--muted);
  margin-top: 24px;
  font-size: 0.94rem;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 12px;
  z-index: 60;
  text-align: center;
  display: none;
}

.legal-main {
  padding: 60px 0;
}

.legal-card {
  max-width: 900px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(24, 36, 63, 0.86), rgba(14, 22, 43, 0.86));
}

.legal-card h1 {
  margin-bottom: 14px;
}

.legal-card h2 {
  margin-top: 22px;
  font-size: 1.3rem;
}

.legal-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-meta {
  color: var(--accent);
  font-size: 0.92rem;
}

.legal-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.legal-nav a {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal-up 0.6s ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.05s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.1s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .hero-grid,
  .footer-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: 66px;
    width: min(290px, calc(100% - 2rem));
    background: rgba(8, 12, 24, 0.97);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 54px;
  }

  .mobile-cta {
    display: inline-flex;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

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

.shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.brand img {
  display: block;
  width: auto;
  height: 40px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
}

.cookie-banner__panel {
  width: min(980px, 100%);
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(8, 12, 24, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
}

.cookie-banner__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner__text a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-banner__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  transform: translateY(-1px);
}

.cookie-btn--accept {
  color: #08211c;
  background: linear-gradient(130deg, var(--primary), #64e9c9);
}

.cookie-btn--reject {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

body.cookie-banner-visible .mobile-cta {
  display: none !important;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-banner__panel {
    padding: 12px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
