@import url('tokens.css');
@import url('enhancements.css');
@import url('theme-dark.css');

:root {
  --cream: #fff8f0;
  --cream-deep: #fff1e3;
  --white: #ffffff;
  --ink: #1f2933;
  --ink-soft: #52606d;
  --ink-faint: #7b8794;
  --coral: #ff6b4a;
  --coral-dark: #e84f2d;
  --teal: #2ec4b6;
  --teal-dark: #1fa99c;
  --sun: #ffd166;
  --lavender: #b8b5ff;
  --mint: #d8f3dc;
  --shadow: 0 18px 50px rgba(31, 41, 51, 0.12);
  --shadow-soft: 0 8px 24px rgba(31, 41, 51, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --header-h: 76px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

.blob-a {
  width: 420px;
  height: 420px;
  background: #ffb199;
  top: -120px;
  right: -80px;
}

.blob-b {
  width: 360px;
  height: 360px;
  background: #9ef0e8;
  bottom: 20%;
  left: -120px;
}

.blob-c {
  width: 280px;
  height: 280px;
  background: #ffe08a;
  top: 45%;
  right: 10%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 240, 0.82);
  border-bottom: 1px solid rgba(31, 41, 51, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: var(--header-h);
  gap: 16px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}

.header-tools--minimal {
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100%, 280px);
  padding: 3px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.lang-btn.is-active {
  background: var(--coral);
  color: white;
}

.lang-btn:hover:not(.is-active) {
  color: var(--coral);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}

.logo-icon-img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.logo-horizontal {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(220px, 58vw);
  object-fit: contain;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), #ff9472);
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-sm {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 15px 24px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #ff8566);
  color: white;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn-soft {
  background: var(--cream-deep);
  color: var(--ink-faint);
}

.btn-dark {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.14);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

.highlight {
  color: var(--coral);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.28em;
  background: rgba(255, 209, 102, 0.65);
  z-index: -1;
  border-radius: 999px;
}

.hero-lead,
.section-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 56ch;
}

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

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.phone-mock {
  position: relative;
  width: min(100%, 320px);
  margin-inline: auto;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(160deg, #2d3436, #111);
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 34%;
  height: 10px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-mock img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
}

.phone-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.float-card {
  position: absolute;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  font-weight: 600;
  animation: float 4.5s ease-in-out infinite;
}

.float-card-1 {
  top: 8%;
  left: 0;
}

.float-card-2 {
  top: 42%;
  right: 0;
  animation-delay: 0.8s;
}

.float-card-3 {
  bottom: 8%;
  left: 8%;
  animation-delay: 1.4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-free {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.14), rgba(255, 107, 74, 0.1));
  border: 1px solid rgba(46, 196, 182, 0.28);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.45;
}

.free-strip {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(46, 196, 182, 0.12), rgba(255, 209, 102, 0.12));
  border-block: 1px solid rgba(31, 41, 51, 0.06);
}

.free-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.free-strip__eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.free-strip__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.free-strip__text {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.marquee-block {
  display: flex;
  flex-direction: column;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(31, 41, 51, 0.06);
  background: var(--white);
  padding: 14px 0;
}

.marquee--sponsors {
  background: var(--cream-deep);
  border-top: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-soft);
}

.marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 36s;
}

.marquee-tag {
  color: var(--coral);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--ink-faint);
}

.marquee-sponsor-thanks {
  white-space: nowrap;
  color: var(--teal-dark);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.marquee-sponsor-slot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 112px;
  height: 72px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 2px dashed rgba(31, 41, 51, 0.18);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.marquee-sponsor-slot:hover {
  border-color: rgba(46, 196, 182, 0.55);
  background: var(--white);
  transform: translateY(-2px);
  color: var(--ink);
}

.marquee-sponsor-slot__box {
  width: 48px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(31, 41, 51, 0.05), rgba(31, 41, 51, 0.02));
  border: 1px dashed rgba(31, 41, 51, 0.12);
}

.marquee-sponsor-slot__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-dark);
}

.marquee-sponsor-slot__ph {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-faint);
  font-family: var(--font-body);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 241, 227, 0.9));
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head .section-lead {
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.step-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(31, 41, 51, 0.08);
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.quest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.quest-card {
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  position: relative;
}

.quest-live {
  border-color: rgba(46, 196, 182, 0.35);
}

.quest-soon {
  opacity: 0.92;
}

.quest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quest-badge.live {
  background: var(--teal);
  color: white;
}

.quest-badge.soon {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-soft);
}

.quest-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.quest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quest-placeholder {
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.quest-barcelona {
  background: linear-gradient(135deg, #ffd6a5, #ffadad);
}

.quest-valencia {
  background: linear-gradient(135deg, #ffc6ff, #bde0fe);
}

.quest-more {
  background: linear-gradient(135deg, #caffbf, #fdffb6);
}

.quest-alcudia {
  background: linear-gradient(135deg, #bde0fe, #a2d2ff);
}

.quest-soller {
  background: linear-gradient(135deg, #ffd6a5, #ffef9f);
}

.quest-valdemossa {
  background: linear-gradient(135deg, #d8e2dc, #b8c0ff);
}

.quest-pollenca {
  background: linear-gradient(135deg, #ffc6ff, #cdb4db);
}

.quest-capdepera {
  background: linear-gradient(135deg, #ffadad, #ffd6a5);
}

.quest-grid-wide {
  grid-template-columns: repeat(3, 1fr);
}

.quest-badge.dev {
  background: rgba(255, 209, 102, 0.95);
  color: #7c4a03;
}

.quest-dev-note {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.section-vote {
  background: linear-gradient(180deg, rgba(46, 196, 182, 0.06), transparent);
}

.vote-section {
  max-width: 760px;
}

.vote-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 12px;
}

.vote-btn {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.vote-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.vote-btn--picked {
  background: var(--teal) !important;
  color: white !important;
  border-color: var(--teal) !important;
}

.vote-btn--dim:not(.vote-btn--picked) {
  opacity: 0.55;
}

.vote-auth-hint {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.vote-my-choice {
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 8px;
}

.vote-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.vote-results-head {
  margin-bottom: 4px;
}

.vote-results-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.vote-results-meta,
.vote-results-leader {
  margin: 0 0 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.vote-results-leader {
  font-weight: 700;
  color: var(--teal-dark);
}

.vote-bar-row {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.vote-bar-row--mine {
  outline: 2px solid rgba(46, 196, 182, 0.45);
}

.vote-bar-row--lead {
  border-left: 4px solid var(--coral);
}

.vote-bar-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.vote-bar-rank {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--cream-deep);
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.vote-bar-row--lead .vote-bar-rank {
  background: rgba(255, 107, 74, 0.15);
  color: var(--coral-dark);
}

.vote-bar-stats {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.vote-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.vote-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #56cfe1);
  transition: width 0.4s ease;
}

.vote-bar-row--lead .vote-bar-fill {
  background: linear-gradient(90deg, var(--coral), #ff9472);
}

.page-account .account-section {
  padding-top: 32px;
}

.account-layout {
  max-width: 880px;
}

.account-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.account-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.account-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.account-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.account-note--muted {
  opacity: 0.85;
}

.auth-block--primary {
  margin: 16px 0;
}

.auth-label {
  font-weight: 600;
  margin: 0 0 10px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.auth-providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.auth-provider {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--cream);
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.55;
}

.auth-providers--soon .auth-provider:not(:disabled) {
  opacity: 1;
  cursor: pointer;
}

.account-card code {
  font-family: ui-monospace, monospace;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.account-card-wide {
  grid-column: 1 / -1;
}

.account-connection {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.account-connection--ok {
  color: var(--teal-dark);
}

.account-connection--warn {
  color: #b45309;
}

#account-link-telegram-wrap {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Telegram Login Widget: iframe has square black corners behind rounded button */
#telegram-login-widget,
#telegram-link-widget {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #54a9eb;
  vertical-align: top;
}

#telegram-login-widget iframe,
#telegram-link-widget iframe {
  border: 0 !important;
  background: transparent !important;
  color-scheme: light;
}

.legal-page__inner {
  max-width: 760px;
}

.legal-prose {
  margin: 24px 0 32px;
  color: var(--ink-soft);
}

.legal-prose h2,
.legal-prose h3 {
  color: var(--ink);
  font-family: var(--font-display);
  margin: 1.6em 0 0.5em;
}

.legal-prose ul {
  padding-left: 1.2em;
}

.legal-prose code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: var(--cream-deep);
}

.vote-btn:disabled,
.auth-provider:disabled {
  opacity: 0.5;
}

.quest-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.quest-city {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.quest-body p {
  margin: 0;
  color: var(--ink-soft);
}

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

.quest-meta li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cream-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 196, 182, 0.18);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.check-list li strong {
  color: var(--ink);
  font-weight: 700;
}

.check-list li a {
  color: var(--coral-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 74, 0.35);
  text-underline-offset: 2px;
}

.check-list li a:hover {
  color: var(--coral);
}

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

.feature-chip {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.feature-chip span {
  margin-right: 8px;
}

.quote-band {
  padding: 54px 0;
  background: linear-gradient(135deg, #2ec4b6, #56cfe1);
  color: white;
}

.quote-inner {
  text-align: center;
}

.quote-inner blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
}

.quote-inner cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  opacity: 0.88;
}

.section-sponsor {
  background: var(--white);
}

.sponsor-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.1), rgba(255, 209, 102, 0.14));
  box-shadow: var(--shadow-soft);
}

.sponsor-teaser-action {
  display: flex;
  justify-content: center;
}

/* ── Partners page ── */
.page-partners .blob-c {
  display: none;
}

.partners-hero {
  padding: 56px 0 40px;
}

.partners-hero-inner {
  max-width: 720px;
}

.partners-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.section-title-center {
  text-align: center;
  margin-bottom: 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.problem-label {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ink);
}

.problem-solution {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 600;
}

.placement-note {
  margin-inline: auto;
  text-align: center;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.placement-chip {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.placement-chip--soon {
  border: 1px dashed rgba(255, 107, 74, 0.35);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.9));
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.tier-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
}

.tier-featured {
  border-color: rgba(255, 107, 74, 0.28);
  background: linear-gradient(180deg, #fff, #fff8f4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tier-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.tier-desc {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
  display: grid;
  gap: 10px;
}

.tier-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.tier-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.tier-card .btn {
  width: 100%;
}

.partners-visual {
  display: flex;
  justify-content: center;
}

.phone-mock-sm {
  width: min(100%, 260px);
}

.section-contact {
  padding-bottom: 88px;
}

.contact-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: calc(var(--radius) + 6px);
  background: var(--ink);
  color: white;
}

.contact-card h2 {
  color: white;
  margin-bottom: 12px;
}

.contact-card p {
  margin: 0 auto 24px;
  max-width: 48ch;
  opacity: 0.88;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-or {
  margin: 0;
  opacity: 0.82;
}

.contact-or a {
  color: var(--sun);
  font-weight: 700;
}

.nav-active {
  color: var(--coral) !important;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.packages {
  display: grid;
  gap: 14px;
}

.package-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid rgba(31, 41, 51, 0.06);
}

.package-featured {
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.12), rgba(255, 209, 102, 0.18));
  border-color: rgba(255, 107, 74, 0.22);
}

.package-tier {
  margin: 0 0 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--coral);
}

.package-price {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.package-price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.package-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.sponsor-cta {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sponsor-cta h3 {
  margin-bottom: 6px;
}

.sponsor-cta p {
  margin: 0;
  opacity: 0.82;
}

.section-play {
  padding-bottom: 96px;
}

.section-waitlist {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), var(--cream-deep));
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.waitlist-form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 51, 0.12);
  background: var(--cream);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--coral);
}

.form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-message--success {
  background: rgba(46, 196, 182, 0.14);
  color: var(--teal-dark);
}

.form-message--error {
  background: rgba(255, 107, 74, 0.12);
  color: var(--coral-dark);
}

.play-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, var(--coral), #ff9472 55%, var(--sun));
  color: white;
  box-shadow: 0 24px 60px rgba(255, 107, 74, 0.28);
}

.play-card h2 {
  color: white;
}

.play-card p {
  margin: 0;
  max-width: 42ch;
  opacity: 0.95;
}

.play-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.play-note {
  font-size: 0.88rem;
  opacity: 0.88;
}

.site-footer {
  padding: 48px 0 24px;
  background: #17212b;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.logo-wordmark--footer {
  color: rgba(255, 255, 255, 0.92);
}

.logo-footer .logo-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

.logo-footer .logo-horizontal {
  height: 36px;
  max-width: 200px;
}

.logo-footer .logo-img {
  box-shadow: none;
  opacity: 0.95;
}

.logo-footer .logo-mark {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.logo-footer .logo-text {
  color: white;
}

.footer-tagline {
  margin: 12px 0 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.62);
}

.footer-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--sun);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
}

/* Cookie consent (RGPD) — compact bar */
.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 9999;
  padding: 4px 8px 8px;
  pointer-events: none;
}

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

.cookie-banner__panel {
  pointer-events: auto;
  max-width: min(880px, calc(100% - 16px));
  margin: 0 auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(18, 22, 28, 0.96);
  border: 1px solid rgba(232, 200, 122, 0.24);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.cookie-banner__title {
  margin: 0 0 2px;
  font-family: Fredoka, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f5f0e6;
}

.cookie-banner__text {
  margin: 0 0 3px;
  font-size: 0.68rem;
  line-height: 1.3;
  color: rgba(245, 240, 230, 0.76);
}

.cookie-banner__links {
  margin: 0;
  font-size: 0.62rem;
}

.cookie-banner__links a {
  color: var(--gold, #e8c87a);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.cookie-banner__btn {
  padding: 3px 8px !important;
  font-size: 0.66rem !important;
  min-height: 0 !important;
  line-height: 1.15 !important;
  transform: none !important;
  box-shadow: none !important;
}

.cookie-banner__btn:hover {
  transform: none !important;
  filter: brightness(1.06);
}

.cookie-banner__settings {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__settings-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: rgba(245, 240, 230, 0.88);
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__toggle input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--gold, #e8c87a);
}

.cookie-banner__toggle--locked {
  opacity: 0.72;
  cursor: default;
}

.cookie-banner__field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: rgba(245, 240, 230, 0.82);
  white-space: nowrap;
}

.cookie-banner__field select {
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: #f5f0e6;
  font-size: 0.66rem;
  max-width: 88px;
}

@media (min-width: 640px) {
  .cookie-banner {
    padding: 6px 12px 10px;
  }

  .cookie-banner__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    padding: 7px 12px;
  }

  .cookie-banner__main {
    flex: 1 1 280px;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 6px;
    row-gap: 1px;
  }

  .cookie-banner__title {
    margin: 0;
    font-size: 0.72rem;
  }

  .cookie-banner__title::after {
    content: " —";
    font-weight: 400;
    opacity: 0.5;
  }

  .cookie-banner__text {
    margin: 0;
    flex: 1 1 180px;
    font-size: 0.64rem;
  }

  .cookie-banner__links {
    flex: 1 1 100%;
    font-size: 0.6rem;
    line-height: 1.2;
  }

  .cookie-banner__actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 4px;
  }

  .cookie-banner__settings {
    flex: 1 1 100%;
    margin-top: 4px;
    padding-top: 5px;
  }

  .cookie-banner__settings-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
  }
}

@media (min-width: 960px) {
  .cookie-banner__panel {
    max-width: min(960px, calc(100% - 24px));
  }

  .cookie-banner__links {
    flex: 0 0 auto;
    margin-left: auto;
    order: 3;
  }

  .cookie-banner__main {
    flex: 1 1 auto;
  }

  .cookie-banner__text {
    flex: 0 1 auto;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .sponsor-grid,
  .sponsor-teaser,
  .steps,
  .quest-grid,
  .quest-grid-wide,
  .waitlist-layout,
  .problem-grid,
  .tier-grid,
  .placement-grid {
    grid-template-columns: 1fr;
  }

  .tier-featured {
    transform: none;
  }

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

  .hero-visual {
    order: -1;
    min-height: auto;
    margin-bottom: 8px;
  }

  .float-card-2 {
    right: 4%;
  }
}

@media (max-width: 720px) {
  .lang-switch {
    max-width: none;
  }

  .lang-btn {
    padding: 6px 7px;
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 16px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .steps,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .section {
    padding: 64px 0;
  }

  .play-card,
  .sponsor-cta {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  .float-card,
  .reveal {
    animation: none;
    transition: none;
  }

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

body.partner-modal-open {
  overflow: hidden;
}

.partner-modal[hidden] {
  display: none !important;
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.partner-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.55);
}

.partner-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 28px 24px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.partner-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.partner-modal__lead {
  margin: 0;
}

.partner-modal__tier {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-deep, var(--teal));
}

.partner-lead-form {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

