/* =============================================
   ACCESSIBILITY
   ============================================= */

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  text-decoration: none;
}

/* Global focus-visible ring (keyboard only) */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Input focus override */
.signup-form input[type="email"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

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

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0d0f14;
  --bg-card: #13161e;
  --bg-card-hover: #1a1e29;
  --accent: #6c63ff;
  --accent-glow: rgba(108, 99, 255, 0.25);
  --accent-light: #8b85ff;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e8eaf0;
  --text-muted: #8b90a0;
  --border: #1f2333;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1600px;
  --max-w-hero: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hero .container {
  max-width: var(--max-w-hero);
}

a {
  color: var(--accent-light);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 72px 0 64px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(108,99,255,0.18) 0%, transparent 70%);
  overflow: hidden;
}

/* Split layout: text left, image right */
.hero .container {
  max-width: var(--max-w-hero);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
  max-width: var(--max-w-hero);
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-photo {
  width: 100%;
  max-width: 460px;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.4);
  color: var(--accent-light);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-promise {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-proof {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof i {
  width: 15px;
  height: 15px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -12px;
  margin-bottom: 40px;
}

/* =============================================
   SIGNUP FORM
   ============================================= */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 12px;
  width: 100%;
}

.hero-centered .signup-form {
  max-width: 460px;
}

.signup-form input[type="email"] {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #0d0f14;
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.signup-form input[type="email"]::placeholder { color: #9ca3af; }
.signup-form input[type="email"]:focus { border-color: var(--accent); }

.signup-form button {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.signup-form button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.signup-form button:active { transform: translateY(0); }

.consent {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

/* =============================================
   PROBLEMS
   ============================================= */
.problems {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problems h2,
.benefits h2,
.signup-section h2,
.author h2,
.trust h2,
.transformation h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.problem-card:hover {
  border-color: rgba(108, 99, 255, 0.4);
  background: var(--bg-card-hover);
}

.problem-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.problem-card p strong { color: var(--text); }

/* =============================================
   BENEFITS
   ============================================= */
.benefits {
  padding: 80px 0;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.benefits-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s, transform 0.15s;
}
.benefits-list li:hover {
  border-color: rgba(108, 99, 255, 0.4);
  transform: translateY(-2px);
}

/* Colored icon badge */
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-top: 1px;
}
.benefit-icon svg { width: 20px; height: 20px; stroke: currentColor; }

.benefit-icon--purple { background: rgba(108, 99, 255, 0.15); color: #a78bfa; }
.benefit-icon--red    { background: rgba(239, 68,  68,  0.13); color: #f87171; }
.benefit-icon--cyan   { background: rgba(6,   182, 212, 0.13); color: #22d3ee; }
.benefit-icon--green  { background: rgba(34,  197, 94,  0.13); color: #4ade80; }
.benefit-icon--orange { background: rgba(249, 115, 22,  0.13); color: #fb923c; }
.benefit-icon--blue   { background: rgba(59,  130, 246, 0.13); color: #60a5fa; }

.benefits-list li div {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.benefits-list li strong { color: var(--text); }

/* =============================================
   TRANSFORMATION
   ============================================= */
.transformation {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Column header labels */
.transformation-header {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 12px;
  margin-bottom: 10px;
  padding: 0 4px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.th-label {
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.th-label i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.th-label--before {
  color: #f87171;
}

.th-label--after {
  color: #34d399;
}

/* Row-by-row grid */
.transformation-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.transform-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 12px;
  align-items: center;
}

.transform-before,
.transform-after {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.55;
}

.transform-before {
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: var(--text-muted);
}

.transform-after {
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--text);
}

.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.transform-arrow i {
  width: 18px;
  height: 18px;
}

/* Remove old selectors */
.before, .after,
.before h3, .after h3,
.before h3 i, .after h3 i,
.before ul, .after ul,
.before li, .after li,
.arrow {
  all: unset;
}

/* =============================================
   SIGNUP SECTION (standalone)
   ============================================= */
.signup-section {
  padding: 80px 0;
  text-align: center;
}

.signup-section--dark {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(108,99,255,0.06) 100%);
  border-top: 1px solid var(--border);
}

.signup-sub {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* =============================================
   AUTHOR
   ============================================= */
.author {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.author-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
}

.author-avatar {
  flex-shrink: 0;
}

.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(108, 99, 255, 0.4);
  display: block;
}

/* Keep old placeholder styles in case image fails to load */
.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  border: 3px solid rgba(108, 99, 255, 0.35);
}

.author-text h2 {
  text-align: left;
  margin-bottom: 20px;
}

.author-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.author-text p strong { color: var(--text); }

.author-cta {
  font-size: 16px !important;
  color: var(--text) !important;
  font-weight: 600;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 24px !important;
}

/* =============================================
   TRUST
   ============================================= */
.trust {
  padding: 64px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-center p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: min(56.25%, 360px); /* 16:9, max 360px high */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
  text-decoration: none;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-light);
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   DOCUMENT PAGES (privacy policy / regulamin)
   ============================================= */
.doc-nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg-card);
}
.doc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.doc-back:hover { color: var(--text); text-decoration: none; }
.doc-brand {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
}

.doc-page {
  padding: 64px 0 80px;
}
.doc-container {
  max-width: 680px;
}

.doc-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}

.doc-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-family: var(--mono);
}

.doc-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  text-align: left;
}

.doc-page p,
.doc-page li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.doc-page ul,
.doc-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.doc-page li { margin-bottom: 8px; }
.doc-page strong { color: var(--text); }
.doc-page a { color: var(--accent-light); }

.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}
.doc-table th,
.doc-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.5;
}
.doc-table th {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
}
.doc-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .transformation-header {
    display: none;
  }
  .transform-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 12px;
  }
  .transform-before {
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none;
  }
  .transform-after {
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .transform-arrow {
    background: var(--bg-card);
    border-left: 1px solid rgba(108,99,255,0.3);
    border-right: 1px solid rgba(108,99,255,0.3);
    padding: 4px 0;
  }
  .transform-arrow i {
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
  }
  .author-inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .author-avatar { text-align: center; }
  .author-text h2 { text-align: center; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }

  /* Hero: single column on mobile */
  .hero {
    padding: 48px 0 40px;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-content {
    text-align: center;
  }
  .badge {
    display: inline-flex;
  }
  .hero-image {
    justify-content: center;
    order: -1;
  }
  .hero-photo {
    width: 100%;
    max-width: 320px;
    height: 360px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .signup-form {
    flex-direction: column;
    max-width: 100%;
  }
  .signup-form input,
  .signup-form button {
    width: 100%;
  }
  .hero-proof {
    gap: 14px;
    font-size: 12px;
    justify-content: center;
  }
  .section-sub {
    font-size: 0.9rem;
  }
  .benefits-list li {
    padding: 16px 16px;
    gap: 12px;
  }
  .transformation {
    padding: 56px 0;
  }
  .signup-section {
    padding: 56px 0;
  }
  .problems {
    padding: 56px 0;
  }
  .benefits {
    padding: 56px 0;
  }
  .author {
    padding: 56px 0;
  }
  .trust {
    padding: 56px 0;
  }
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.site-logo:hover { text-decoration: none; }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  flex-shrink: 0;
}
.logo-mark svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent-light);
}

.logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-top: 1px;
}

/* Header right group */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lang-switch:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
  text-decoration: none;
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.header-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  text-decoration: none;
}
.header-cta svg { width: 14px; height: 14px; }

/* Footer logo variant */
.footer-logo .logo-sub { display: none; }

@media (max-width: 480px) {
  .header-cta { display: none; }
  .logo-sub { display: none; }
  .hero h1 { font-size: 1.65rem; letter-spacing: -0.02em; }
  .hero-sub { font-size: 1rem; }
  .hero-proof { flex-direction: column; align-items: center; gap: 8px; }
  .signup-form { max-width: 100%; }
  .signup-form button { font-size: 14px; padding: 14px 16px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  h2 { font-size: 1.6rem; }
  .signup-section h2,
  .signup-section--dark h2 { font-size: 1.4rem; }
}

/* =============================================
   ICONS (Lucide)
   ============================================= */
.badge-icon,
.btn-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.signup-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.problem-icon svg,
.check svg {
  width: 22px;
  height: 22px;
}

/* Transformation dots */
.before li,
.after li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.dot svg { width: 12px; height: 12px; stroke-width: 3; }
.dot--red  { background: rgba(239,68,68,0.15); color: var(--red); }
.dot--green { background: rgba(34,197,94,0.15); color: var(--green); }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px);
  max-width: 780px;
  background: #1a1e29;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  flex-wrap: wrap;
}

.cookie-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent-light);
}

.cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  min-width: 180px;
}
.cookie-text strong { color: var(--text); }
.cookie-text a { color: var(--accent-light); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}
.cookie-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.cookie-btn--decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: #fff;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
  opacity: 0;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
