/*
Theme Name: Dentopia - The Tooth Trooper Adventures
Theme URI: https://dentopia.pl
Author: Dentopia Interstellar Labs
Author URI: https://dentopia.pl
Description: Futurystyczny motyw gamifikacyjny dla platformy stomatologicznej Dentopia. Neonowy dark-mode, glassmorphism, animacje CSS i pełna responsywność mobile-first.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dentopia
Tags: dark, one-column, custom-menu, featured-images, translation-ready
*/

/* ══════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════ */
:root {
  /* Surfaces */
  --dt-bg:             #0b0c1f;
  --dt-bg-low:         #101127;
  --dt-bg-container:   #16172f;
  --dt-bg-high:        #1c1d37;
  --dt-bg-highest:     #22233f;
  --dt-bg-bright:      #282947;

  /* Accents */
  --dt-primary:        #ff7cf5;
  --dt-primary-dim:    #ff51fa;
  --dt-primary-dark:   #440044;
  --dt-secondary:      #00e3fd;
  --dt-secondary-dim:  #00d4ec;
  --dt-tertiary:       #fff5b6;
  --dt-tertiary-dim:   #edda00;

  /* Text */
  --dt-on-surface:     #e4e3fe;
  --dt-on-surface-var: #a9a9c3;
  --dt-outline:        #73738b;
  --dt-outline-var:    #45465c;

  /* Misc */
  --dt-error:          #ff6e84;
  --dt-radius:         1rem;
  --dt-radius-lg:      2rem;
  --dt-radius-xl:      3rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  background: var(--dt-bg);
  color: var(--dt-on-surface);
  overflow-x: hidden;
  min-height: 100dvh;
  line-height: 1.6;
}

::selection {
  background: rgba(255, 124, 245, 0.25);
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.font-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

/* ══════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.badge--cyan {
  background: rgba(0, 227, 253, 0.08);
  color: var(--dt-secondary);
  border: 1px solid rgba(0, 227, 253, 0.2);
}

.badge--yellow {
  background: rgba(255, 245, 182, 0.08);
  color: var(--dt-tertiary);
  border: 1px solid rgba(255, 245, 182, 0.2);
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 0.875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--dt-primary);
  color: #000;
  box-shadow: 0 0 25px rgba(255, 124, 245, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 0 40px rgba(255, 124, 245, 0.5), 0 0 80px rgba(255, 124, 245, 0.2);
  transform: scale(1.03);
}

.btn--secondary {
  background: var(--dt-secondary);
  color: #003a42;
  box-shadow: 0 0 25px rgba(0, 227, 253, 0.35);
}
.btn--secondary:hover {
  box-shadow: 0 0 40px rgba(0, 227, 253, 0.5);
  transform: scale(1.03);
}

.btn--ghost {
  background: transparent;
  color: var(--dt-tertiary);
  border: 1px solid rgba(255, 245, 182, 0.25);
  box-shadow: 0 0 15px rgba(255, 245, 182, 0.1);
}
.btn--ghost:hover {
  background: var(--dt-tertiary);
  color: #5d5400;
}

.btn--outline {
  background: rgba(34, 35, 63, 0.4);
  color: var(--dt-on-surface);
  border: 1px solid var(--dt-outline-var);
  backdrop-filter: blur(12px);
}
.btn--outline:hover {
  background: var(--dt-bg-highest);
}

.btn--nav {
  background: var(--dt-primary);
  color: #000;
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 0 0 var(--dt-primary-dark);
}
.btn--nav:active {
  transform: translateY(2px);
  box-shadow: none;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 12, 31, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 245, 182, 0.06);
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(11, 12, 31, 0.95);
  border-color: rgba(255, 245, 182, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo .material-symbols-outlined { color: var(--dt-primary); font-size: 1.75rem; }
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dt-primary);
  text-shadow: 0 0 12px rgba(255, 124, 245, 0.4);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.nav-links a {
  color: var(--dt-on-surface);
  transition: color 0.3s;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dt-secondary);
  border-color: var(--dt-secondary);
}

@media (min-width: 1024px) {
  .nav-inner { padding: 1rem 2rem; }
  .nav-links { display: flex; }
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(69, 70, 92, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(69, 70, 92, 0.2) 1px, transparent 1px);
  background-size: clamp(30px, 8vw, 50px) clamp(30px, 8vw, 50px);
  transform: perspective(1000px) rotateX(60deg);
  transform-origin: top;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
}

.hero__zubi-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.hero__zubi-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 124, 245, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  transform: scale(1.5);
  pointer-events: none;
}
.hero__zubi {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 40px rgba(0, 227, 253, 0.5))
    drop-shadow(0 0 12px rgba(255, 124, 245, 0.3));
  mix-blend-mode: screen;
  transition: transform 1.2s ease-out;
}
.hero__zubi:hover { transform: scale(1.05); }

@media (min-width: 640px)  { .hero__zubi { max-width: 380px; } }
@media (min-width: 1024px) { .hero__zubi { max-width: 480px; } .hero__zubi-wrap { margin-bottom: 3rem; } }

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--dt-primary);
  font-style: italic;
  text-shadow: 0 0 40px rgba(255, 124, 245, 0.3);
}

.hero__desc {
  color: var(--dt-on-surface-var);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
}
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }

/* ══════════════════════════════════════
   SECTION: MISSIONS
   ══════════════════════════════════════ */
.section { padding: 4rem 1.5rem; }
@media (min-width: 768px) { .section { padding: 8rem 1.5rem; } }

.section--low  { background: var(--dt-bg-low); }
.section--base { background: var(--dt-bg); }
.section--bordered {
  background: var(--dt-bg-low);
  border-top: 1px solid rgba(69, 70, 92, 0.1);
  border-bottom: 1px solid rgba(69, 70, 92, 0.1);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 5rem;
  }
}

.section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.75rem);
  letter-spacing: -0.02em;
  color: var(--dt-primary);
}

.section__desc {
  color: var(--dt-on-surface-var);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.7;
}

.toothcoins {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--dt-radius);
  background: rgba(34, 35, 63, 0.5);
  border: 1px solid rgba(255, 245, 182, 0.12);
  color: var(--dt-tertiary);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Mission cards grid */
.missions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .missions-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.mission-card {
  position: relative;
  background: var(--dt-bg-high);
  border-radius: 1.5rem;
  padding: 2rem 2rem 2.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
}

.mission-card--cyan  { border: 1px solid rgba(0, 227, 253, 0.15); }
.mission-card--cyan:hover  { box-shadow: 0 0 40px rgba(0, 227, 253, 0.08), inset 0 0 30px rgba(0, 227, 253, 0.05); }
.mission-card--pink  { border: 1px solid rgba(255, 124, 245, 0.15); }
.mission-card--pink:hover  { box-shadow: 0 0 40px rgba(255, 124, 245, 0.08), inset 0 0 30px rgba(255, 124, 245, 0.05); }
.mission-card--gold  { border: 1px solid rgba(255, 245, 182, 0.15); }
.mission-card--gold:hover  { box-shadow: 0 0 40px rgba(255, 245, 182, 0.08), inset 0 0 30px rgba(255, 245, 182, 0.05); }

@media (min-width: 768px) { .mission-card { padding: 2.5rem; } }

.mission-card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 3.75rem;
  font-weight: 900;
  font-style: italic;
  opacity: 0.06;
  pointer-events: none;
}

.mission-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--dt-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.mission-card__icon .material-symbols-outlined { font-size: 2rem; }

.mission-card__icon--cyan  { background: rgba(0, 227, 253, 0.1); color: var(--dt-secondary); }
.mission-card__icon--pink  { background: rgba(255, 124, 245, 0.1); color: var(--dt-primary); }
.mission-card__icon--gold  { background: rgba(255, 245, 182, 0.1); color: var(--dt-tertiary); }

.mission-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.mission-card--cyan:hover .mission-card__title { color: var(--dt-secondary); }
.mission-card--pink:hover .mission-card__title { color: var(--dt-primary); }
.mission-card--gold:hover .mission-card__title { color: var(--dt-tertiary); }

.mission-card__desc {
  color: var(--dt-on-surface-var);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Progress bars */
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.progress-track {
  width: 100%;
  height: 0.625rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 9999px;
  overflow: hidden;
  padding: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.progress-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1.2s ease-out;
}
.progress-fill--cyan  { background: var(--dt-secondary); box-shadow: 0 0 14px rgba(0, 227, 253, 0.6); }
.progress-fill--pink  { background: var(--dt-primary);   box-shadow: 0 0 14px rgba(255, 124, 245, 0.6); }
.progress-fill--gold  { background: var(--dt-tertiary);  box-shadow: 0 0 14px rgba(255, 245, 182, 0.6); }

/* ══════════════════════════════════════
   SECTION: CLINICS
   ══════════════════════════════════════ */
.clinics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .clinics-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.clinics__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.clinics__title em { color: var(--dt-secondary); font-style: italic; }

.feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.feature-row__icon {
  padding: 1rem;
  border-radius: var(--dt-radius);
  flex-shrink: 0;
}
.feature-row__icon--cyan  { background: rgba(0, 227, 253, 0.1); border: 1px solid rgba(0, 227, 253, 0.15); }
.feature-row__icon--pink  { background: rgba(255, 124, 245, 0.1); border: 1px solid rgba(255, 124, 245, 0.15); }

.feature-row__title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.feature-row__desc {
  color: var(--dt-on-surface-var);
  font-weight: 300;
  font-size: 1rem;
}

/* Comparison table */
.comparison-table-wrap {
  background: rgba(16, 17, 39, 0.5);
  border: 1px solid rgba(69, 70, 92, 0.25);
  border-radius: var(--dt-radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .comparison-table-wrap { padding: 2.5rem; } }

.comparison-table-wrap::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background: rgba(0, 227, 253, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th {
  padding: 1rem 0;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dt-on-surface-var);
  border-bottom: 1px solid rgba(69, 70, 92, 0.25);
}
.comparison-table th:last-child {
  color: var(--dt-primary);
  font-weight: 900;
  letter-spacing: 0;
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td { padding: 1.25rem 0; font-weight: 500; }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:not(:last-child) td { border-bottom: 1px solid rgba(69, 70, 92, 0.08); }

.icon-check  { color: var(--dt-outline); }
.icon-close  { color: var(--dt-outline-var); }
.icon-premium { color: var(--dt-primary); }

/* ══════════════════════════════════════
   SECTION: SCIENCE / WHITEPAPER
   ══════════════════════════════════════ */
.science-card {
  background: var(--dt-bg-high);
  border: 1px solid rgba(255, 124, 245, 0.05);
  border-radius: var(--dt-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .science-card {
    flex-direction: row;
    gap: 5rem;
    padding: 4rem;
    border-radius: var(--dt-radius-xl);
  }
}

.science-card__img-wrap { width: 100%; max-width: 20rem; flex-shrink: 0; }
.science-card__img {
  width: 100%;
  filter: drop-shadow(0 25px 50px rgba(255, 124, 245, 0.25));
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}
.science-card__img:hover { transform: rotate(0deg) scale(1.02); }

.science-card__body { flex: 1; }

.science-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.science-card__title em { color: var(--dt-primary); font-style: italic; }

.science-card__quote {
  color: var(--dt-on-surface-var);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.authors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(69, 70, 92, 0.1);
  border-bottom: 1px solid rgba(69, 70, 92, 0.1);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .authors-grid { grid-template-columns: 1fr 1fr; } }

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}
.author__avatar--pink { border: 2px solid var(--dt-primary); box-shadow: 0 0 0 4px rgba(255, 124, 245, 0.1); }
.author__avatar--cyan { border: 2px solid var(--dt-secondary); box-shadow: 0 0 0 4px rgba(0, 227, 253, 0.1); }

.author__name { font-weight: 700; font-size: 0.9375rem; }
.author__role {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--dt-outline);
}

/* ══════════════════════════════════════
   SECTION: CONTACT (CF7 STYLING)
   ══════════════════════════════════════ */
.contact-card {
  position: relative;
  background: rgba(28, 29, 55, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 227, 253, 0.1);
  border-radius: var(--dt-radius-xl);
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 227, 253, 0.04);
}
@media (min-width: 768px) { .contact-card { padding: 4rem; } }

.contact-card::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 124, 245, 0.07);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.contact-card__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.contact-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.contact-card__desc {
  color: var(--dt-on-surface-var);
  font-weight: 300;
  max-width: 32rem;
  margin: 0 auto;
}

/* CF7 form overrides */
.contact-card .wpcf7-form {
  position: relative;
  z-index: 1;
}

.contact-card .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .contact-card .form-row--half { grid-template-columns: 1fr 1fr; } }

.contact-card .form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.contact-card label,
.contact-card .form-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--dt-on-surface-var);
  padding-left: 1rem;
}

.contact-card input[type="text"],
.contact-card input[type="email"],
.contact-card textarea,
.contact-card .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  background: rgba(11, 12, 31, 0.5);
  border: 1px solid rgba(69, 70, 92, 0.3);
  border-radius: var(--dt-radius);
  padding: 1rem 1.5rem;
  color: var(--dt-on-surface);
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}
.contact-card input:focus,
.contact-card textarea:focus,
.contact-card .wpcf7-form-control:focus:not(.wpcf7-submit) {
  border-color: rgba(255, 124, 245, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 124, 245, 0.12);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(169, 169, 195, 0.35);
}

.contact-card .wpcf7-submit,
.contact-card .btn--submit {
  width: 100%;
  background: var(--dt-primary);
  color: #000;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem;
  border: none;
  border-radius: var(--dt-radius);
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 124, 245, 0.2);
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.contact-card .wpcf7-submit:hover,
.contact-card .btn--submit:hover {
  box-shadow: 0 0 40px rgba(255, 124, 245, 0.4);
  transform: scale(1.01);
}

/* CF7 validation messages */
.wpcf7-not-valid-tip { color: var(--dt-error); font-size: 0.75rem; margin-top: 0.25rem; }
.wpcf7-response-output {
  border-radius: var(--dt-radius) !important;
  border-color: var(--dt-secondary) !important;
  color: var(--dt-secondary) !important;
  text-align: center;
  padding: 1rem !important;
  margin-top: 1.5rem !important;
}

/* ══════════════════════════════════════
   FLOATING PROGRESS BAR
   ══════════════════════════════════════ */
.floating-progress {
  position: fixed;
  bottom: 4.5rem;
  left: 0;
  width: 100%;
  z-index: 40;
  padding: 0 1rem;
  pointer-events: none;
}
@media (min-width: 768px) { .floating-progress { bottom: 1.5rem; } }

.floating-progress__inner {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(22, 23, 47, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(69, 70, 92, 0.25);
  border-radius: var(--dt-radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: auto;
}

.floating-progress__icon {
  padding: 0.625rem;
  border-radius: 50%;
  background: rgba(255, 124, 245, 0.15);
  box-shadow: 0 0 15px rgba(255, 124, 245, 0.2);
  display: flex;
}
.floating-progress__icon .material-symbols-outlined {
  color: var(--dt-primary);
  font-size: 1.25rem;
  font-variation-settings: "FILL" 1;
}

.floating-progress__body { flex: 1; }
.floating-progress__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.5625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}
.floating-progress__lvl { color: var(--dt-secondary); }

.floating-progress__bar {
  width: 100%;
  height: 0.625rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 9999px;
  overflow: hidden;
  padding: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.floating-progress__fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--dt-secondary), var(--dt-primary));
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(0, 227, 253, 0.4);
}

.floating-progress__xp {
  display: none;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 245, 182, 0.07);
  border: 1px solid rgba(255, 245, 182, 0.15);
  border-radius: 0.5rem;
  color: var(--dt-tertiary);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (min-width: 640px) { .floating-progress__xp { display: block; } }

/* ══════════════════════════════════════
   MOBILE BOTTOM NAV
   ══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 1.5rem;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  background: rgba(11, 12, 31, 0.95);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) { .mobile-nav { display: none; } }

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(228, 227, 254, 0.35);
  transition: color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--dt-primary); }
.mobile-nav a .material-symbols-outlined { font-size: 24px; }
.mobile-nav a span:last-child {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  padding: 4rem 2rem 9rem;
  background: var(--dt-bg);
  border-top: 1px solid var(--dt-bg-high);
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer { padding: 6rem 2rem 4rem; margin-top: 3rem; }
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.footer__logo .material-symbols-outlined { color: var(--dt-primary); font-size: 1.75rem; }
.footer__logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  letter-spacing: 0.3em;
  font-size: 1.5rem;
  color: var(--dt-primary);
}

.footer__copy {
  font-size: 0.625rem;
  opacity: 0.4;
  color: var(--dt-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 24rem;
  margin: 0 auto 2rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.footer__links a:hover { color: var(--dt-primary); }

.footer__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  opacity: 0.2;
}
.footer__social .material-symbols-outlined { cursor: pointer; transition: opacity 0.3s; }
.footer__social .material-symbols-outlined:hover { opacity: 1; }

/* ══════════════════════════════════════
   ANIMATIONS (scroll reveal)
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-star {
  0%   { opacity: 0.1; transform: scale(0.8); }
  100% { opacity: 0.5; transform: scale(1.3); }
}
