:root {
  /* Ink / Graphite – primary surface & text */
  --ink-950: #0b0e12;
  --ink-900: #141820;
  --ink-800: #1d2330;
  --ink-700: #2a3244;
  --ink-600: #3c4a60;
  --ink-500: #56657e;
  --ink-400: #7a8ea8;
  --ink-300: #a8b8cc;
  --ink-200: #cdd8e6;
  --ink-100: #e4ebf4;
  --ink-50: #f2f5fa;

  /* Mint – primary accent (fresh, trustworthy, modern) */
  --mint-700: #0a6657;
  --mint-600: #0d8a73;
  --mint-500: #14a88c;
  --mint-400: #2ec4a8;
  --mint-300: #62d9c4;
  --mint-200: #a0eddf;
  --mint-100: #cffaf3;
  --mint-50: #edfdf9;

  /* Amber – secondary accent (reward, warmth, CTA) */
  --amber-700: #92470a;
  --amber-600: #ba6210;
  --amber-500: #e07c15;
  --amber-400: #f5a235;
  --amber-300: #fac169;
  --amber-200: #fcdfa8;
  --amber-100: #fef0d5;
  --amber-50: #fffbf2;

  /* Semantic */
  --success-600: #16a34a;
  --success-100: #dcfce7;
  --success-50: #f0fdf4;
  --danger-600: #dc2626;
  --danger-100: #fee2e2;
  --warn-500: #f59e0b;

  /* Off-white surface */
  --surface: #f7f8fb;
  --white: #ffffff;

  /* Fonts */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Shape */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 38px;

  /* Shadows – warmer, less blue */
  --sh-xs: 0 1px 2px rgba(11, 14, 18, 0.06);
  --sh-sm: 0 2px 8px rgba(11, 14, 18, 0.07), 0 1px 3px rgba(11, 14, 18, 0.05);
  --sh: 0 4px 16px rgba(11, 14, 18, 0.09), 0 1px 4px rgba(11, 14, 18, 0.05);
  --sh-md: 0 8px 28px rgba(11, 14, 18, 0.12), 0 2px 8px rgba(11, 14, 18, 0.06);
  --sh-lg:
    0 20px 56px rgba(11, 14, 18, 0.14), 0 6px 18px rgba(11, 14, 18, 0.07);
  --sh-xl:
    0 32px 80px rgba(11, 14, 18, 0.18), 0 10px 28px rgba(11, 14, 18, 0.09);
  --glow-mint: 0 0 32px rgba(20, 168, 140, 0.22);
  --glow-amber: 0 0 28px rgba(224, 124, 21, 0.24);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.2s;
  --t-md: 0.32s;
  --t-lg: 0.5s;

  /* Layout */
  --header-h: 70px;
  --max-w: 1200px;
}

/* ─── RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--mint-600);
  text-decoration: none;
  transition: color var(--t) var(--ease);
}
a:hover {
  color: var(--mint-700);
}
ul {
  list-style: none;
}
.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: -0.14em;
  color: currentColor;
}
.ui-icon .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ui-icon + .ui-icon-gap {
  display: inline-block;
  width: 0.42em;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: var(--font-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.18;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.025em;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.container-sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.container-xs {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.section {
  padding: clamp(72px, 9vw, 120px) 0;
}
.section-alt {
  background: var(--surface);
}
.section-dark {
  background: var(--ink-900);
}
.section-dark .section-title {
  color: var(--white);
}
.section-dark .section-subtitle {
  color: var(--ink-300);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-700);
  background: var(--mint-50);
  border: 1px solid var(--mint-200);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--ink-600);
  max-width: 600px;
  line-height: 1.75;
}
.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin: 0 auto;
}
.text-white {
  color: var(--white) !important;
}
.text-gradient {
  background: linear-gradient(
    130deg,
    var(--mint-500) 0%,
    var(--mint-400) 60%,
    var(--amber-400) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.article-intro {
  font-size: 1.18rem;
  line-height: 1.78;
  color: var(--ink-600);
  border-left: 3px solid var(--mint-400);
  padding-left: 20px;
  margin-bottom: 32px;
  font-style: italic;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--r);
  transition: all var(--t-md) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ink-900);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11, 14, 18, 0.24);
}
.btn-primary:hover {
  background: var(--ink-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 14, 18, 0.28);
}
.btn-mint {
  background: var(--mint-600);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(20, 168, 140, 0.32);
}
.btn-mint:hover {
  background: var(--mint-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 168, 140, 0.38);
}
.btn-amber {
  background: var(--amber-500);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224, 124, 21, 0.3);
}
.btn-amber:hover {
  background: var(--amber-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(224, 124, 21, 0.36);
}
.btn-outline {
  border: 2px solid var(--ink-900);
  color: var(--ink-900);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink-900);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-mint {
  border: 2px solid var(--mint-500);
  color: var(--mint-600);
  background: transparent;
}
.btn-outline-mint:hover {
  background: var(--mint-600);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--ink-900);
  box-shadow: var(--sh-md);
}
.btn-white:hover {
  background: var(--mint-50);
  color: var(--mint-700);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink-600);
  background: transparent;
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover {
  background: var(--ink-50);
  color: var(--ink-800);
  border-color: var(--ink-300);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 15px 34px;
  border-radius: var(--r-lg);
}
.btn-sm {
  font-size: 0.84rem;
  padding: 8px 18px;
  border-radius: var(--r-sm);
}
.btn-xs {
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: var(--r-xs);
}
.btn-block,
.btn-full {
  display: flex;
  width: 100%;
  justify-content: center;
}
.w-full {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 9998;
  background: var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  overflow-x: clip;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.88rem;
  color: var(--ink-300);
  line-height: 1.6;
}
.cookie-inner a {
  color: var(--mint-300);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.cookie-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--ink-100);
  height: var(--header-h);
  overflow: visible;
  transition:
    box-shadow var(--t-md) var(--ease),
    border-color var(--t) var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--sh-md);
  border-color: var(--ink-200);
}
.header-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(16px, 3vw, 40px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.04em;
}

.main-nav {
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  gap: 2px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  position: relative;
}
.main-nav a:hover {
  color: var(--mint-700);
  background: var(--mint-50);
}
.main-nav a.active {
  color: var(--mint-700);
  background: var(--mint-50);
  font-weight: 600;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.hamburger:hover {
  background: var(--ink-100);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: all var(--t-md) var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background: var(--white);
  z-index: 800;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--t) var(--ease),
    transform var(--t-md) var(--ease),
    visibility 0s linear var(--t-md);
  padding: 14px 12px 24px;
  border-top: 1px solid var(--ink-100);
  box-shadow: 0 16px 40px rgba(11, 14, 18, 0.08);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--t) var(--ease),
    transform var(--t-md) var(--ease),
    visibility 0s linear 0s;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 100%;
}
.mobile-nav a {
  display: block;
  padding: 13px 16px;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-800);
  transition: all var(--t);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--mint-50);
  color: var(--mint-700);
}
.mobile-nav .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.mobile-nav .btn-outline {
  border-color: var(--ink-300);
  color: var(--ink-900);
}
.mobile-nav .btn-primary {
  color: var(--white);
}
.mobile-nav-divider {
  height: 1px;
  background: var(--ink-100);
  margin: 8px 0;
}
body.nav-open .cookie-banner {
  opacity: 0;
  pointer-events: none;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(11, 14, 18, 0.96) 0%,
      rgba(11, 14, 18, 0.9) 46%,
      rgba(11, 14, 18, 0.74) 100%
    ),
    url("../img/hero-platform.webp") center right / cover no-repeat,
    var(--ink-950);
  padding: clamp(88px, 12vw, 160px) 0 clamp(80px, 11vw, 140px);
  color: var(--white);
}
/* Subtle noise texture feel via layered radials – NOT gambling, NOT neon */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 0%,
      rgba(20, 168, 140, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 90%,
      rgba(20, 168, 140, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 60% at 100% 50%,
      rgba(224, 124, 21, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 168, 140, 0.15);
  border: 1px solid rgba(20, 168, 140, 0.3);
  color: var(--mint-300);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 8px var(--mint-400);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.hero h1 .accent {
  color: var(--mint-400);
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-300);
  margin-bottom: 40px;
  line-height: 1.78;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.hero-stat span:first-child {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.hero-stat span:last-child {
  font-size: 0.8rem;
  color: var(--ink-400);
  margin-top: 5px;
  display: block;
}

/* Hero visual – dashboard mockup card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  z-index: 1;
}
.hero-card-main {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--sh-xl);
  position: relative;
  z-index: 2;
}
/* Subtle back card */
.hero-card-main::before {
  content: "";
  position: absolute;
  inset: -10px -6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: calc(var(--r-xl) + 6px);
  z-index: -1;
}
.hero-card-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-label .fi {
  display: inline-flex;
  line-height: 1;
}
.hero-card-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 8px var(--mint-400);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.hero-card-chip span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.hero-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-app-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 14px 8px;
  text-align: center;
  transition:
    transform var(--t) var(--ease),
    background var(--t);
}
.hero-app-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
}
.hero-app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 6px;
  color: var(--mint-300);
}
.hero-app-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.hero-app-name {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  line-height: 1.3;
}
.hero-app-bonus {
  font-size: 0.76rem;
  color: var(--mint-300);
  font-weight: 700;
  margin-top: 5px;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -14px;
  z-index: 3;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 13px 18px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4.5s ease-in-out infinite;
}
.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--mint-700);
}
.hero-badge-icon .fi {
  display: inline-flex;
  line-height: 1;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.hero-badge .amount {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--success-600);
}
.hero-badge small {
  font-size: 0.7rem;
  color: var(--ink-500);
  display: block;
  line-height: 1.4;
}

/* ─── GENERIC CARDS ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  overflow: hidden;
  transition:
    transform var(--t-md) var(--ease),
    box-shadow var(--t-md) var(--ease);
  border: 1px solid var(--ink-100);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.card-body {
  padding: 28px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── BENEFIT CARDS ──────────────────────────────────── */
.benefit-card {
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--ink-100);
  transition: all var(--t-md) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint-500), var(--amber-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-md) var(--ease);
}
.benefit-card:hover {
  border-color: var(--mint-200);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.benefit-card:hover::after {
  transform: scaleX(1);
}
.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r);
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--mint-700);
}
.benefit-icon .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.benefit-icon img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.7;
}

/* ─── STEPS ──────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  padding-bottom: 40px;
}
.step-item:last-child {
  padding-bottom: 0;
}
.step-item::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ink-200) 0%, transparent 100%);
}
.step-item:last-child::before {
  display: none;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11, 14, 18, 0.22);
  border: 3px solid var(--white);
  outline: 2px solid var(--ink-200);
}
.step-content h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  margin-top: 16px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.7;
}
.how-it-works-img {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-md);
  object-fit: cover;
}

/* ─── OFFER CARDS ────────────────────────────────────── */
.offer-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--t-md) var(--ease);
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--mint-200);
}
.offer-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ink-100);
  overflow: hidden;
}
.offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg) var(--ease);
}
.offer-card:hover .offer-thumb img {
  transform: scale(1.05);
}
.offer-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--mint-50), var(--amber-50));
}
.offer-body {
  padding: 20px;
}
.offer-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mint-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.offer-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink-900);
  line-height: 1.35;
}
.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.offer-bonus {
  background: var(--success-50);
  color: var(--success-600);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--success-100);
}
.offer-tasks {
  color: var(--ink-500);
  font-size: 0.8rem;
}
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--mint-50);
  color: var(--mint-700);
  margin: 2px;
  border: 1px solid var(--mint-100);
}
.tag-orange {
  background: var(--amber-100);
  color: var(--amber-700);
  border-color: var(--amber-200);
}
.tag-green {
  background: var(--success-100);
  color: var(--success-600);
  border-color: #bbf7d0;
}
.tag-purple {
  background: #ede9fe;
  color: #6d28d9;
  border-color: #c4b5fd;
}

/* ─── PAYMENT PILLS ──────────────────────────────────── */
.payment-methods-band {
  position: relative;
  padding: 46px 0;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(20, 168, 140, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(245, 162, 53, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, var(--mint-50), var(--white));
  border-top: 1px solid rgba(20, 168, 140, 0.12);
  border-bottom: 1px solid var(--ink-100);
}
.payment-methods-label {
  text-align: center;
  margin-bottom: 18px;
  color: var(--mint-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.payment-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--sh-xs);
  transition: all var(--t-md) var(--ease);
}
.payment-pill:hover {
  border-color: var(--mint-400);
  color: var(--mint-700);
  transform: translateY(-3px);
  box-shadow: var(--sh), var(--glow-mint);
}
.payment-pill .pay-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.payment-pill .pay-icon .fi {
  display: inline-flex;
  line-height: 1;
}

/* ─── TRUST SECTION ──────────────────────────────────── */
.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item .t-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: var(--mint-300);
}
.trust-item .t-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.trust-item h4 {
  font-size: 0.97rem;
  margin-bottom: 7px;
  color: var(--white);
}
.trust-item p {
  font-size: 0.86rem;
  color: var(--ink-400);
}

/* ─── FAQ ────────────────────────────────────────────── */
#faq {
  scroll-margin-top: calc(var(--header-h) + 22px);
}
#contact-form {
  scroll-margin-top: calc(var(--header-h) + 22px);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--ink-200);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--white);
  transition: background var(--t);
  text-align: left;
  gap: 14px;
}
.faq-q:hover {
  background: var(--surface);
}
.faq-q.open {
  background: var(--mint-50);
  color: var(--mint-700);
  border-bottom: 1px solid var(--mint-100);
}
.faq-item:has(.faq-q.open) {
  border-color: var(--mint-200);
  box-shadow: 0 2px 12px rgba(20, 168, 140, 0.08);
}
.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-700);
  transition: all var(--t-md) var(--spring);
}
.faq-icon::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.faq-q.open .faq-icon {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.75;
}
.faq-a.open {
  display: block;
}
.faq-teaser-section {
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: clamp(52px, 7vw, 84px);
}
.faq-teaser {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--r-xl);
  border: 1px solid var(--mint-100);
  background:
    radial-gradient(
      circle at top left,
      rgba(20, 168, 140, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, var(--white), var(--mint-50));
  box-shadow: var(--sh-md);
}
.faq-teaser-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-700);
  background: var(--white);
  border: 1px solid var(--mint-100);
  box-shadow: var(--sh-sm);
  font-size: 2rem;
}
.faq-teaser-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.faq-teaser-content .section-label {
  margin-bottom: 10px;
}
.faq-teaser-content .section-title {
  margin-bottom: 10px;
}
.faq-teaser-content p {
  max-width: 660px;
  color: var(--ink-600);
  line-height: 1.75;
}
.faq-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--ink-950);
  padding: clamp(64px, 9vw, 112px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 50% 50%,
      rgba(20, 168, 140, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 40% at 80% 80%,
      rgba(224, 124, 21, 0.08),
      transparent 50%
    );
  pointer-events: none;
}
.cta-band > .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--ink-400);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.cta-band .btn-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.article-cta-band {
  margin: clamp(44px, 7vw, 82px) 0 0;
  background:
    linear-gradient(135deg, rgba(11, 14, 18, 0.96), rgba(20, 24, 32, 0.98)),
    var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.article-cta-band::after {
  content: "";
  position: absolute;
  inset: 18px clamp(18px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  pointer-events: none;
}
.article-cta-band h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta-band p {
  max-width: 620px;
}

/* ─── BLOG CARDS ─────────────────────────────────────── */
.blog-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--t-md) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--mint-200);
}
.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink-100);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg) var(--ease);
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}
.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint-700);
  margin-bottom: 9px;
}
.blog-body h3 {
  font-size: 1.03rem;
  margin-bottom: 9px;
  line-height: 1.38;
}
.blog-body h3 a {
  color: var(--ink-900);
}
.blog-body h3 a:hover {
  color: var(--mint-700);
}
.blog-excerpt {
  font-size: 0.87rem;
  color: var(--ink-600);
  line-height: 1.65;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--ink-100);
  font-size: 0.78rem;
  color: var(--ink-500);
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── ARTICLE ────────────────────────────────────────── */
.article-hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(18px, 4vw, 36px);
  background: var(--white);
  color: var(--ink-800);
  border-bottom: 1px solid var(--ink-100);
}
.article-hero .container {
  position: relative;
  z-index: 1;
}
.article-header {
  max-width: 820px;
}
.article-hero .section-title {
  color: var(--ink-950);
}
.article-hero .blog-meta {
  color: var(--ink-500);
}
.blog-meta.mt-16 {
  border-top: none;
  padding-top: 0;
}
.article-hero-img {
  display: none;
}
.article-body {
  padding: clamp(38px, 6vw, 72px) 0;
}
.article-content {
  max-width: 820px;
}
.article-main-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--r-xl);
  margin: 26px 0 34px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--ink-100);
}
.article-content p {
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 20px;
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
  color: var(--ink-950);
}
.article-content h3 {
  font-size: 1.18rem;
  margin: 30px 0 10px;
  color: var(--ink-800);
}
.article-content ul,
.article-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.article-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.article-content ul {
  list-style: disc;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r);
  padding: 22px;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.feature-item:hover {
  border-color: var(--mint-200);
  box-shadow: var(--sh-sm);
}
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 0.95rem;
  margin-bottom: 7px;
  color: var(--ink-900);
}
.feature-item p {
  font-size: 0.87rem;
  color: var(--ink-600);
  line-height: 1.65;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.pros,
.pros-box {
  background: var(--success-50);
  border: 1px solid var(--success-100);
  border-radius: var(--r);
  padding: 22px;
}
.cons,
.cons-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r);
  padding: 22px;
}
.pros h3,
.pros-box h4 {
  color: var(--success-600);
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.cons h3,
.cons-box h4 {
  color: var(--danger-600);
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.pros ul,
.cons ul,
.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
}
.pros ul li,
.pros-box li {
  color: #166534;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 6px;
}
.cons ul li,
.cons-box li {
  color: #991b1b;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 6px;
}
.rating-box {
  background: linear-gradient(135deg, var(--mint-50), var(--amber-50));
  border: 1px solid var(--mint-100);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin: 28px 0;
  text-align: center;
}
.rating-box h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--ink-950);
}
.rating-stars {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.rating-score {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mint-600);
  margin-bottom: 12px;
}
.rating-box p {
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}
.article-cta {
  background: var(--ink-950);
  border-radius: var(--r-xl);
  padding: 34px 38px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 60% at 75% 50%,
    rgba(20, 168, 140, 0.12),
    transparent
  );
  pointer-events: none;
}
.article-cta > * {
  position: relative;
  z-index: 1;
}
.article-cta h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.article-cta p {
  color: var(--ink-400);
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.article-hero .breadcrumb {
  color: var(--ink-400);
  margin-bottom: 20px;
}
.article-hero .breadcrumb a {
  color: var(--ink-500);
}
.article-hero .breadcrumb a:hover {
  color: var(--mint-700);
}
.article-hero .breadcrumb span {
  color: var(--ink-300);
}

/* ─── FORMS ──────────────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}
.form-label,
label.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.form-label-link {
  font-weight: 500;
  color: var(--mint-600);
  font-size: 0.82rem;
}
.form-hint {
  display: block;
  font-size: 0.77rem;
  color: var(--ink-500);
  margin-top: 4px;
}
.form-control,
.form-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r);
  font-size: 0.94rem;
  color: var(--ink-900);
  background: var(--white);
  transition:
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
  line-height: 1.5;
}
.form-control:focus,
.form-input:focus {
  outline: none;
  border-color: var(--mint-500);
  box-shadow: 0 0 0 4px rgba(20, 168, 140, 0.12);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.input-password-wrap {
  position: relative;
}
.input-password-wrap .form-input {
  padding-right: 44px;
}
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ink-400);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color var(--t);
}
.toggle-password:hover {
  color: var(--ink-700);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--mint-600);
}
.form-check-text {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}
.form-check a {
  color: var(--mint-600);
  text-decoration: underline;
}
.form-checkbox-group {
  margin-bottom: 14px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-600);
  cursor: pointer;
  line-height: 1.55;
  user-select: none;
}
.checkbox-text {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}
.checkbox-label input[type="checkbox"] {
  display: none;
}
.checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--ink-300);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--spring);
  margin-top: 2px;
}
.checkbox-label:hover .checkbox-custom {
  border-color: var(--mint-500);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--mint-600);
  border-color: var(--mint-600);
  box-shadow: 0 2px 6px rgba(20, 168, 140, 0.3);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}
.checkbox-label a {
  color: var(--mint-600);
  text-decoration: underline;
}
.form-success {
  background: var(--success-50);
  color: #166534;
  border: 1px solid var(--success-100);
  border-radius: var(--r);
  padding: 13px 17px;
  font-size: 0.93rem;
  margin-top: 14px;
  display: none;
}
.form-success.show {
  display: block;
}
.password-strength {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.pw-bar {
  flex: 1;
  height: 4px;
  background: var(--ink-200);
  border-radius: 100px;
  overflow: hidden;
}
.pw-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
#pw-label {
  font-size: 0.77rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── AUTH PAGES ─────────────────────────────────────── */
.auth-section,
.auth-page {
  background: var(--surface);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.auth-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 42px 46px;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--ink-100);
}
.auth-card-wide {
  max-width: 600px;
}
.auth-header {
  text-align: center;
  margin-bottom: 28px;
}
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.auth-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink-950);
  margin-bottom: 7px;
  letter-spacing: -0.04em;
}
.auth-subtitle {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.55;
}
.reg-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 26px;
}
.reg-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--ink-600);
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-sm);
  padding: 8px 12px;
}
.social-login {
  margin-bottom: 20px;
}
.btn-social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r);
  padding: 11px 20px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: all var(--t) var(--ease);
}
.btn-social:hover {
  border-color: var(--ink-400);
  background: var(--surface);
  box-shadow: var(--sh-sm);
}
.btn-social:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.google-auth-modal {
  max-width: 420px;
}
.google-auth-error {
  margin-top: 10px;
  font-size: 0.84rem;
}
.google-auth-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--sh-xs);
}
.google-account-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r);
  background: var(--white);
  text-align: left;
  margin-bottom: 16px;
  transition:
    border-color var(--t),
    background var(--t),
    box-shadow var(--t);
}
.google-account-card:hover,
.google-account-card:focus-visible {
  border-color: var(--mint-400);
  background: var(--mint-50);
  box-shadow: var(--sh-sm);
}
.google-account-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.google-account-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.35;
}
.google-account-text strong {
  font-size: 0.94rem;
  color: var(--ink-900);
}
.google-account-text span {
  font-size: 0.82rem;
  color: var(--ink-500);
  width: fit-content;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--ink-400);
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-150, #e8edf4);
}
.auth-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--danger-100);
  border: 1px solid #fecaca;
  color: var(--danger-600);
  border-radius: var(--r);
  padding: 11px 14px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.auth-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 14px;
  gap: 12px;
}
.success-icon {
  font-size: 3rem;
  line-height: 1;
}
.auth-success h3 {
  font-size: 1.3rem;
  color: var(--ink-950);
}
.auth-success p {
  color: var(--ink-600);
  font-size: 0.92rem;
  max-width: 370px;
  line-height: 1.65;
}
.reg-success-sub {
  font-size: 0.87rem !important;
  color: var(--ink-500) !important;
}
.auth-switch {
  text-align: center;
  font-size: 0.87rem;
  color: var(--ink-500);
  margin-top: 20px;
}
.auth-switch a {
  color: var(--mint-600);
  font-weight: 600;
}
.auth-legal-note {
  font-size: 0.75rem;
  color: var(--ink-400);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.auth-trust-row {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--ink-500);
  flex-wrap: wrap;
  justify-content: center;
}
.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.87rem;
  color: var(--ink-600);
}
.btn-full {
  margin-top: 8px;
}

/* ─── DASHBOARD / DEMO ───────────────────────────────── */
.demo-page,
.dashboard-wrap {
  background: var(--surface);
}
.dashboard-wrap {
  padding: 36px 0 60px;
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 24px;
}
.dash-sidebar {
  background: var(--ink-950);
  border-radius: var(--r-xl);
  padding: 24px 0;
  color: var(--white);
  position: sticky;
  top: calc(var(--header-h) + 16px);
  height: fit-content;
  box-shadow: var(--sh-lg);
}
.dash-sidebar-logo {
  padding: 0 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--t) var(--ease);
  border-left: 2px solid transparent;
  cursor: pointer;
}
.dash-nav-item:hover,
.dash-nav-item.active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-left-color: var(--mint-400);
}
.dash-nav-icon {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
}
.dash-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.demo-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-header h2 {
  font-size: 1.3rem;
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--t-md),
    transform var(--t-md);
}
.stat-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.stat-card::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -8px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--mint-50);
  pointer-events: none;
}
.stat-card .s-label {
  font-size: 0.76rem;
  color: var(--ink-500);
  font-weight: 500;
  margin-bottom: 6px;
}
.stat-card .s-value {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.1;
}
.stat-card .s-icon {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 1.3rem;
  z-index: 1;
}
.stat-card .s-change {
  font-size: 0.76rem;
  color: var(--success-600);
  font-weight: 600;
  margin-top: 5px;
}
.blur-text {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
.progress-track {
  background: var(--ink-100);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--mint-600), var(--mint-400));
  transition: width 0.6s var(--ease);
}
.task-list-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
}
.task-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink-50);
  transition: background var(--t);
}
.task-item:last-child {
  border-bottom: none;
}
.task-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--ink-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t) var(--spring);
  cursor: pointer;
}
.task-check:hover {
  border-color: var(--mint-500);
  background: var(--mint-50);
}
.task-check.done {
  background: var(--mint-600);
  border-color: var(--mint-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}
.task-label {
  flex: 1;
  font-size: 0.9rem;
  color: var(--ink-800);
}
.task-label.done {
  text-decoration: line-through;
  color: var(--ink-400);
}
.task-pts {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--mint-700);
  background: var(--mint-50);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--mint-100);
}
.payout-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
}
.payout-widget h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}
.payout-amount-big {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--success-600);
  margin-bottom: 4px;
  line-height: 1.1;
}
.offer-list-dash {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--r);
  padding: 13px 16px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
  transition: all var(--t-md);
  cursor: pointer;
}
.offer-row:hover {
  box-shadow: var(--sh);
  transform: translateX(3px);
  border-color: var(--mint-200);
}
.offer-row-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--mint-50), var(--amber-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid var(--ink-100);
  overflow: hidden;
}
.offer-row-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-row-info {
  flex: 1;
}
.offer-row-info h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: var(--ink-900);
}
.offer-row-info span {
  font-size: 0.78rem;
  color: var(--ink-500);
}
.offer-row-bonus {
  font-weight: 700;
  color: var(--success-600);
  font-size: 0.9rem;
}

/* ─── MODALS ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 18, 0.55);
  backdrop-filter: blur(6px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--t-md) var(--ease),
    visibility var(--t-md);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  padding: clamp(28px, 4vw, 44px);
  max-width: 480px;
  width: 100%;
  transform: scale(0.94) translateY(14px);
  transition: transform var(--t-md) var(--spring);
  position: relative;
  border: 1px solid var(--ink-100);
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--ink-600);
  transition: all var(--t);
}
.modal-close:hover {
  background: var(--ink-200);
  color: var(--ink-900);
}
.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mint-50);
  border: 2px solid var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.modal-box h3 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 8px;
}
.modal-box .modal-sub {
  text-align: center;
  color: var(--ink-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
#modal-tasks-cta {
  white-space: normal;
  line-height: 1.35;
  text-align: center;
}
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 16px 0;
}
.pay-opt {
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r);
  padding: 13px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-700);
}
.pay-opt:hover,
.pay-opt.selected {
  border-color: var(--mint-500);
  background: var(--mint-50);
  color: var(--mint-700);
}
.pay-opt .po-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45em;
  font-size: 1.45rem;
  margin-bottom: 5px;
}
.pay-opt .po-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.success-checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--mint-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(20, 168, 140, 0.36);
  transform: scale(0);
  transition: transform var(--t-md) var(--spring);
}
.success-checkmark.pop {
  transform: scale(1);
}
.demo-steps-indicator {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 22px;
}
.demo-step-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-200);
  transition: all var(--t-md) var(--spring);
}
.demo-step-dot.active {
  background: var(--mint-500);
  width: 20px;
  border-radius: 100px;
}

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background:
    linear-gradient(
      90deg,
      rgba(11, 14, 18, 0.94) 0%,
      rgba(11, 14, 18, 0.86) 48%,
      rgba(11, 14, 18, 0.66) 100%
    ),
    var(--page-hero-bg, url("../img/hero-platform.webp")) center / cover
      no-repeat,
    var(--ink-950);
  padding: clamp(58px, 9vw, 100px) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 65% 50%,
      rgba(20, 168, 140, 0.1),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(224, 124, 21, 0.07),
      transparent
    );
  pointer-events: none;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
}
body.page-wie-es-funktioniert .page-hero {
  --page-hero-bg: url("../img/mission-visual.webp");
}
body.page-demo .page-hero {
  --page-hero-bg: url("../img/hero-platform.webp");
}
body.page-aufgaben .page-hero {
  --page-hero-bg: url("../img/blog-strategy-game.webp");
}
body.page-auszahlungen .page-hero {
  --page-hero-bg: url("../img/payout-visual.webp");
}
body.page-blog .page-hero {
  --page-hero-bg: url("../img/blog-productivity-app.webp");
}
body.page-ueber-uns .page-hero {
  --page-hero-bg: url("../img/team-photo.webp");
}
body.page-kontakt .page-hero {
  --page-hero-bg: url("../img/mission-visual.webp");
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--ink-300);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--t);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.28);
}

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal-section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.legal-content {
  max-width: 820px;
}
.legal-header {
  margin-bottom: 48px;
}
.legal-header h1 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.legal-header .section-subtitle,
.legal-meta {
  color: var(--ink-400);
  font-size: 0.87rem;
}
.legal-block {
  margin-bottom: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--ink-100);
}
.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--mint-100);
  display: inline-block;
}
.legal-block h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink-800);
  margin: 20px 0 9px;
}
.legal-block p {
  color: var(--ink-600);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-block ul {
  color: var(--ink-600);
  font-size: 0.93rem;
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 12px;
  list-style: disc;
}
.legal-block ul li {
  margin-bottom: 6px;
}
.legal-block a {
  color: var(--mint-600);
  text-decoration: underline;
}
.legal-body h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--ink-100);
}
.legal-body h3 {
  font-size: 1.05rem;
  margin: 22px 0 8px;
}
.legal-body p {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--ink-700);
  margin-bottom: 14px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-body li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 5px;
}
.legal-body ul {
  list-style: disc;
}
.legal-body ol {
  list-style: decimal;
}
.legal-notice {
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-left: 4px solid var(--amber-500);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--amber-700);
  line-height: 1.7;
  margin-bottom: 42px;
}
.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: var(--r);
  border: 1px solid var(--ink-200);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.cookie-table th {
  background: var(--surface);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--ink-700);
  white-space: nowrap;
  border-bottom: 2px solid var(--ink-200);
}
.cookie-table td {
  padding: 10px 14px;
  color: var(--ink-600);
  vertical-align: top;
  border-bottom: 1px solid var(--ink-100);
}
.cookie-table tr:last-child td {
  border-bottom: none;
}
.cookie-table tr:nth-child(even) td {
  background: var(--surface);
}
.cookie-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ─── ABOUT / TEAM ───────────────────────────────────── */
.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(20, 168, 140, 0.11),
      transparent 36%
    ),
    var(--white);
  box-shadow: var(--sh-sm);
}
.team-intro h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  margin-bottom: 12px;
}
.team-intro p {
  color: var(--ink-600);
  line-height: 1.8;
}
.team-focus-list {
  display: grid;
  gap: 12px;
}
.team-focus-list div {
  padding: 15px 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--ink-100);
}
.team-focus-list strong,
.team-focus-list span {
  display: block;
}
.team-focus-list strong {
  color: var(--ink-900);
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.team-focus-list span {
  color: var(--ink-600);
  font-size: 0.84rem;
  line-height: 1.55;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.team-card {
  padding: 28px 24px;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: all var(--t-md) var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--mint-200);
}
.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--mint-100), var(--amber-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--mint-700);
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(11, 14, 18, 0.1);
}
.team-avatar .fi {
  display: inline-flex;
  line-height: 1;
}
.team-card h4 {
  font-size: 1.04rem;
  margin-bottom: 5px;
}
.team-card .role {
  font-size: 0.82rem;
  color: var(--mint-600);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--ink-600);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.team-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mint-700);
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  border-radius: 999px;
  padding: 4px 9px;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.safety-card {
  min-height: 100%;
  padding: 26px 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
  transition:
    border-color var(--t-md) var(--ease),
    box-shadow var(--t-md) var(--ease),
    transform var(--t-md) var(--ease);
}
.safety-card:hover {
  border-color: var(--mint-200);
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
}
.safety-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--mint-700);
  background:
    linear-gradient(135deg, rgba(20, 168, 140, 0.12), rgba(245, 162, 53, 0.12)),
    var(--white);
  border: 1px solid var(--mint-100);
  font-size: 1.45rem;
}
.safety-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.safety-kicker {
  margin-bottom: 7px;
  color: var(--mint-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.safety-card h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.safety-card p {
  color: var(--ink-600);
  font-size: 0.88rem;
  line-height: 1.7;
}
.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 42px;
}
.value-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.value-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.value-item p {
  font-size: 0.87rem;
  color: var(--ink-600);
  line-height: 1.65;
}

/* ─── PAYOUT / AUSZAHLUNGEN ──────────────────────────── */
.payout-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
}
.payout-method-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--white);
  transition: all var(--t-md) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.payout-method-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint-500), var(--amber-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-md) var(--ease);
}
.payout-method-card:hover {
  border-color: var(--mint-200);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.payout-method-card:hover::after {
  transform: scaleX(1);
}
.pm-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.pm-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.pm-name {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink-900);
}
.pm-details {
  font-size: 0.87rem;
  color: var(--ink-600);
  line-height: 1.65;
}
.payout-method-card > div:last-child {
  margin-top: auto;
  padding-top: 12px;
}
.pm-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.pm-badge-fast {
  background: var(--success-100);
  color: var(--success-600);
}
.pm-badge-crypto {
  background: var(--amber-100);
  color: var(--amber-700);
}
.payout-table {
  width: 100%;
  border-collapse: collapse;
}
.payout-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.payout-table th {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-500);
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 2px solid var(--ink-100);
  text-align: left;
}
.payout-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--ink-50);
  font-size: 0.9rem;
  color: var(--ink-700);
}
.payout-table tr:last-child td {
  border-bottom: none;
}
.payout-table tr:hover td {
  background: var(--surface);
}
.method-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-800);
}
.method-cell .fi {
  display: inline-flex;
  color: var(--mint-700);
  line-height: 1;
}
.delay-box {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
}
.delay-box h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.delay-box ul {
  display: grid;
  gap: 8px;
  list-style: disc;
  padding-left: 20px;
  color: var(--ink-600);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── TIMELINE ───────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 38px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--mint-500),
    rgba(20, 168, 140, 0)
  );
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -46px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mint-600);
  border: 3px solid var(--white);
  box-shadow:
    0 0 0 3px var(--mint-200),
    var(--sh-sm);
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: all var(--t-md) var(--ease);
}
.timeline-content:hover {
  border-color: var(--mint-200);
  box-shadow: var(--sh);
}
.timeline-content h3 {
  font-size: 1.03rem;
  margin-bottom: 7px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.7;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.contact-info p {
  color: var(--ink-600);
  margin-bottom: 28px;
  line-height: 1.75;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.83rem;
  color: var(--ink-500);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-detail p {
  font-size: 0.93rem;
  color: var(--ink-900);
  margin: 0;
}

/* ─── AUFGABEN FILTER ────────────────────────────────── */
.aufgaben-filter {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--ink-200);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-600);
  background: var(--white);
  transition: all var(--t) var(--ease);
}
.filter-btn:hover {
  border-color: var(--mint-400);
  color: var(--mint-700);
  background: var(--mint-50);
}
.filter-btn.active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
}

/* ─── MISC HELPERS ───────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.two-col-img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mint-50), var(--amber-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  overflow: hidden;
  border: 1px solid var(--ink-100);
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fit-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.notice-box {
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  border-left: 4px solid var(--mint-500);
  border-radius: var(--r);
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--mint-700);
  line-height: 1.7;
}
.notice-box.warn {
  background: var(--amber-50);
  border-color: var(--amber-200);
  border-left-color: var(--amber-500);
  color: var(--amber-700);
}
.important-notes {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 36px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  box-shadow: var(--sh-xs);
}
.important-notes-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--amber-200);
  color: var(--amber-700);
  font-size: 1.35rem;
}
.important-notes-icon .fi {
  display: inline-flex;
  line-height: 1;
}
.important-notes h3 {
  margin-bottom: 10px;
  color: var(--ink-900);
  font-size: 1.08rem;
}
.important-notes ul {
  display: grid;
  gap: 8px;
  list-style: disc;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.65;
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-blue {
  background: var(--mint-50);
  color: var(--mint-700);
}
.badge-green {
  background: var(--success-100);
  color: var(--success-600);
}
.badge-orange {
  background: var(--amber-100);
  color: var(--amber-700);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(98, 217, 196, 0.4),
    transparent
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(4, minmax(0, 1fr));
  gap: 40px 28px;
  padding: 72px 0 52px;
  align-items: start;
}
.footer-brand,
.footer-col {
  min-width: 0;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-tagline {
  max-width: 30ch;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.64);
  margin-top: 12px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.footer-company-info {
  max-width: 34ch;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  transition: all var(--t) var(--ease);
}
.social-icon:hover {
  background: rgba(20, 168, 140, 0.16);
  color: var(--white);
  border-color: rgba(98, 217, 196, 0.32);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  transition:
    color var(--t),
    transform var(--t);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(2px);
}
.footer-badge {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}
.badge-ssl,
.badge-dsgvo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0 24px;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-disclaimer {
  max-width: 620px;
  line-height: 1.7;
}
.footer-disclaimer a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
}
.footer-disclaimer a:hover {
  color: var(--white);
}

/* ─── UTILITIES ──────────────────────────────────────── */
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-48 {
  margin-bottom: 48px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.divider {
  height: 1px;
  background: var(--ink-100);
  margin: 26px 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animate-fade-in {
  animation: fadeInUp 0.5s var(--ease-out) both;
}
.animate-delay-1 {
  animation-delay: 0.1s;
}
.animate-delay-2 {
  animation-delay: 0.2s;
}
.animate-delay-3 {
  animation-delay: 0.32s;
}
.animate-delay-4 {
  animation-delay: 0.44s;
}
.animate-delay-5 {
  animation-delay: 0.56s;
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.loader {
  width: 24px;
  height: 24px;
  border: 3px solid var(--ink-200);
  border-top-color: var(--mint-600);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.skeleton {
  background: linear-gradient(
    90deg,
    var(--ink-100) 25%,
    var(--ink-50) 50%,
    var(--ink-100) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .header-shell {
    padding: 0 clamp(14px, 2vw, 24px);
  }
  .header-inner {
    gap: 16px;
  }
  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav ul {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .main-nav a {
    padding: 7px 11px;
    font-size: 0.84rem;
    white-space: nowrap;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn {
    padding-inline: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 1040px) {
  .logo-text {
    font-size: 1.15rem;
  }
  .main-nav a {
    padding: 6px 10px;
    font-size: 0.81rem;
  }
  .header-actions .btn {
    padding-inline: 10px;
  }
}
@media (max-width: 1200px) and (min-width: 901px) {
  .main-nav::-webkit-scrollbar {
    height: 6px;
  }
  .main-nav::-webkit-scrollbar-thumb {
    background: var(--ink-200);
    border-radius: 999px;
  }
  .main-nav::-webkit-scrollbar-track {
    background: transparent;
  }
}
@media (max-width: 1100px) {
  .site-footer .container {
    padding-left: clamp(28px, 5vw, 54px);
    padding-right: clamp(28px, 5vw, 54px);
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 24px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-layout {
    grid-template-columns: 210px 1fr;
  }
}
@media (max-width: 900px) {
  .container,
  .container-sm,
  .container-xs {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-shell {
    padding: 0 14px;
  }
  .main-nav,
  .header-actions {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .mobile-nav {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
  .team-intro {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .faq-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .faq-teaser-icon {
    margin: 0 auto;
  }
  .faq-teaser-content p {
    margin: 0 auto;
  }
  .faq-teaser-actions {
    justify-content: center;
  }
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .demo-two-cols {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    display: none;
  }
  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner {
    padding: 14px 12px;
  }
  .cookie-inner {
    align-items: stretch;
    gap: 14px;
  }
  .cookie-inner p {
    min-width: 0;
    font-size: 0.84rem;
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .container,
  .container-sm,
  .container-xs {
    padding-left: 18px;
    padding-right: 18px;
  }
  :root {
    --header-h: 62px;
  }
  .form-check {
    gap: 12px;
  }
  .form-check-text {
    word-break: normal;
    overflow-wrap: break-word;
  }
  .checkbox-label {
    gap: 12px;
    align-items: start;
  }
  .checkbox-custom {
    margin-top: 3px;
  }
  .checkbox-text {
    flex: 1 1 auto;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }
  body.page-demo .stat-cards {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 22px;
    padding-top: 22px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-teaser {
    padding: 26px 20px;
  }
  .faq-teaser-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .faq-teaser-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .important-notes {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 56px 0 36px;
  }
  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-brand,
  .footer-col {
    padding: 0 2px;
  }
  .footer-tagline,
  .footer-company-info,
  .footer-disclaimer {
    max-width: none;
  }
  .footer-social {
    gap: 12px;
  }
  .footer-col h4 {
    margin-bottom: 14px;
  }
  .footer-col ul {
    gap: 10px;
  }
  .footer-bottom-inner {
    padding-top: 2px;
  }
  .footer-bottom {
    padding: 16px 0 22px;
  }
  .payout-methods-grid {
    grid-template-columns: 1fr;
  }
  .payout-table {
    min-width: 620px;
  }
  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .auth-card,
  .auth-card-wide {
    padding: 26px 20px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reg-benefits {
    grid-template-columns: 1fr;
  }
  .cookie-action-buttons {
    flex-direction: column;
  }
  .auth-trust-row {
    gap: 10px;
    font-size: 0.76rem;
  }
  .article-cta {
    padding: 26px 22px;
  }
  .cta-band .btn-actions {
    flex-direction: column;
    align-items: center;
  }
  .two-col-img {
    display: none;
  }
}
