:root {
  --ink: #0f172a;
  /* deep slate */
  --muted: #64748b;
  /* slate-500 */
  --bg: #fbfdff;
  /* paper white */
  --line: #e6eef7;
  /* soft border */
  --accent: #7c3aed;
  /* violet */
  --accent-2: #06b6d4;
  /* cyan */
  --ok: #10b981;
  /* green */
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  color: #0f172a;
}

.container-1000 {
  max-width: 1000px;
}

a {
  text-decoration: none;
}

/* --- HERO: clean, split, gradient accent line --- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(900px 240px at 20% -10%, rgba(124, 58, 237, .08), transparent 60%),
    radial-gradient(700px 220px at 110% 0%, rgba(6, 182, 212, .08), transparent 55%);
}

.accent-rule {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  opacity: .85;
}

.sponsor {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.tag {
  display: inline-block;
  font-weight: 600;
  font-size: .75rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: #f1effe;
  color: #4c35b0;
  border: 1px solid #e4e2fb;
}

/* --- CARDS: ultra-minimal --- */
.cardx {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.cardx h5,
.cardx h6 {
  letter-spacing: .2px
}

.muted {
  color: var(--muted)
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 2.5rem 0
}

/* --- CTA button --- */
.btn-cta {
  --bs-btn-bg: var(--ink);
  background: #0f172a;
  --bs-btn-border-color: var(--ink);
  --bs-btn-color: #fff !important;
  --bs-btn-hover-bg: #1f2a45;
  --bs-btn-hover-border-color: #1f2a45;
  padding: .8rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}
.btn-cta:hover {
  color: #fff;
}

.btn-ghost {
  color: var(--ink);
  color: #0f172a;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem 1.2rem;
}

/* --- Fancy list ticks --- */
.list-ticks {
  list-style: none;
  padding-left: 0;
  margin: 0
}

.list-ticks li {
  padding-left: 1.6rem;
  position: relative;
  margin: .35rem 0
}

.list-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--ok), #34d399);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
}

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

.floaty {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }

  100% {
    transform: translateY(0)
  }
}

/* --- FAQ --- */
.faq .accordion-button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px !important;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: .75rem
}

.faq .accordion-body {
  color: var(--muted)
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--line);
}
:root {
  --ink: #0f172a;
  /* text */
  --muted: #64748b;
  /* secondary text */
  --card: #ffffff;
  /* panel bg */
  --line: #e6eef7;
  /* soft border */
  --shadow: 0 12px 30px rgba(15, 23, 42, .16);
  --accent: #111827;
  /* button bg */
  --accent-hover: #1f2a45;
  /* button hover */
  --radius: 14px;
}
.cookie-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 360px;
  width: calc(100% - 32px);
  box-sizing: border-box;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  font: 14px/1.45 system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  opacity: 0;
  transform: translateY(150%);
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(-15px);
}

.cookie-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cookie-title svg {
  color: #f59e0b;
}

.cookie-text {
  margin: 0 0 12px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn {
  appearance: none;
  cursor: pointer;
  user-select: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1;
  transition: background-color .15s ease, border-color .15s ease, transform .04s ease, box-shadow .15s ease;
  outline: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .3);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  background: rgba(148, 163, 184, .08);
  border-color: var(--line);
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 100px 0;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.thanks p.thanks-text {
  font-weight: 700;
}