:root {
  --violet: #2e004f;
  --violet-light: #4b0082;
  --mint: #00ff94;
  --mint-dim: #00cc76;
  --paper: #f3f0eb;
  --white: #ffffff;
  --dark: #121212;
  --text: #2e2e2e;
  --gray: #888888;
  --font-main: "Outfit", sans-serif;
  --font-serif: "Playfair Display", serif;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

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

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

.container-fluid {
  width: 100%;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--violet);
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: 30px;
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
  /* Text Stroke for contrast if on light bg, but here mainly logic */
  -webkit-text-stroke: 1px var(--violet);
  color: transparent;
}

.hero-lead {
  font-size: 20px;
  max-width: 500px;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.6;
}

/* Buttons */
.btn-violet {
  display: inline-block;
  background: var(--violet);
  color: var(--white);
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--violet);
  border-radius: 4px; /* Slight round */
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 4px 4px 0 var(--mint);
}

.btn-violet:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--mint);
}

.btn-link {
  display: inline-block;
  color: var(--violet);
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid var(--mint);
  padding-bottom: 5px;
}

.btn-mint {
  background: var(--mint);
  color: var(--violet);
  padding: 10px 20px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-mint:hover {
  background: var(--mint-dim);
}

.lg {
  padding: 18px 40px;
  font-size: 18px;
}
.sm {
  padding: 8px 16px;
  font-size: 12px;
}
.full {
  width: 100%;
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.h-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-txt {
  font-weight: 800;
  font-size: 20px;
  color: var(--violet);
  letter-spacing: -1px;
}

.desk-menu {
  display: flex;
  gap: 40px;
}

.nav-item {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  transition: 0.3s;
}

.nav-item:hover::after {
  width: 100%;
}

.h-right {
  display: block;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.dot {
  width: 40px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
}

/* Mobile Menu */
.mob-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--violet);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

.mob-layer.active {
  transform: translateY(0);
}

.ml-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.ml-logo {
  color: var(--mint);
  font-weight: 800;
  font-size: 24px;
}

.icon-clean {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.ml-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.ml-nav a {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

.ml-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.ml-btn {
  color: var(--mint);
  font-size: 20px;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
}

.ml-foot p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Hero */
.hero {
  padding-top: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-block;
  background: var(--mint);
  color: var(--violet);
  padding: 5px 10px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.hero-note {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}

.hs-visual {
  position: relative;
}

.abstract-shape {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 120%;
  height: 120%;
  background: #f0e6fa;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  animation: morph 10s infinite alternate;
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.img-card {
  position: relative;
  z-index: 1;
}

.img-card img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(46, 0, 79, 0.15);
}

.float-stat {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 20px 30px;
  border: 2px solid var(--violet);
  box-shadow: 10px 10px 0 var(--mint);
}

.float-stat span {
  display: block;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
}
.float-stat strong {
  display: block;
  font-size: 24px;
  color: var(--violet);
  font-weight: 800;
}

/* Ticker */
.marquee {
  background: var(--violet);
  color: var(--mint);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}

.track {
  display: inline-block;
  animation: scroll 30s linear infinite;
}

.sep {
  color: var(--white);
  margin: 0 20px;
  font-size: 8px;
  vertical-align: middle;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Manifesto */
.bg-paper {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.mg-body p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.stats-row {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}

.stat strong {
  display: block;
  font-size: 40px;
  color: var(--violet);
  line-height: 1;
}
.stat span {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
}

/* Tracks */
.tracks-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.track-card {
  padding: 40px;
  border: 1px solid #ddd;
  background: var(--white);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.track-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.track-card.violet {
  border-top: 4px solid var(--violet);
}
.track-card.mint {
  border-top: 4px solid var(--mint);
}
.track-card.white {
  border-top: 4px solid var(--dark);
}

.tc-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: flex-start;
}

.cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.track-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.track-card p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  flex: 1;
}

.tc-link {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--violet);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  font-size: 14px;
}

/* Journal */
.bg-dark {
  background: var(--dark);
  color: var(--white);
}
.text-mint {
  color: var(--mint);
}
.link-mint {
  color: var(--mint);
  border-bottom: 1px solid var(--mint);
  font-weight: 600;
  font-size: 14px;
}
.flex-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.j-main {
  display: block;
  position: relative;
}

.jm-img {
  height: 400px;
  overflow: hidden;
}
.jm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.j-main:hover img {
  transform: scale(1.05);
}

.jm-info {
  margin-top: 20px;
}

.date {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--mint);
  margin-bottom: 10px;
  display: block;
}
.jm-info h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
}
.jm-info p {
  color: #aaa;
}

.j-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.jl-item {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.jl-item h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 5px;
}
.jl-item p {
  color: #888;
  font-size: 14px;
}

/* Quiz Banner */
.quiz-banner {
  background: var(--violet);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background-image: radial-gradient(circle at top right, #4b0082, transparent);
}

.qb-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}
.qb-content p {
  color: #e0e0e0;
  max-width: 600px;
  font-size: 18px;
}

.qb-act .btn-violet {
  background: var(--white);
  color: var(--violet);
  border-color: var(--white);
  box-shadow: none;
}
.qb-act .btn-violet:hover {
  background: var(--mint);
  color: var(--violet);
  border-color: var(--mint);
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.mb-60 {
  margin-bottom: 60px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.acc-row {
  background: var(--white);
  border: 1px solid #ddd;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--violet);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.acc-body p {
  padding: 0 20px 20px;
  color: #555;
}

/* Contact */
.split-screen-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--violet);
}

.ssf-left {
  background: var(--violet);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ssf-left h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.ssf-left p {
  color: #ccc;
  margin-bottom: 40px;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cd-row {
  display: flex;
  alignitems: center;
  gap: 15px;
  font-size: 18px;
}
.cd-row i {
  color: var(--mint);
}

.ssf-right {
  padding: 60px;
  background: var(--white);
}

.input-wrap {
  margin-bottom: 20px;
  position: relative;
}

.input-wrap label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--violet);
}

.input-wrap input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #eee;
  padding: 10px 0;
  font-family: var(--font-main);
  font-size: 18px;
  color: var(--text);
  background: transparent;
}

.input-wrap input:focus {
  outline: none;
  border-color: var(--mint);
}

.error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 11px;
  color: #ff0055;
  display: none;
}

.input-wrap.error input {
  border-color: #ff0055;
}
.input-wrap.error .error-text {
  display: block;
}

.checkbox-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.checkbox-wrap input {
  margin-top: 5px;
  accent-color: var(--violet);
}
.checkbox-wrap label {
  font-size: 12px;
  color: #666;
}
.checkbox-wrap a {
  text-decoration: underline;
  color: var(--violet);
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 0 20px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.f-logo {
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
}
.f-brand p {
  color: #888;
  max-width: 300px;
  margin-bottom: 20px;
}

.f-contacts-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #aaa;
}
.f-contacts-links a:hover {
  color: var(--white);
}

.f-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}
.f-col a {
  display: block;
  margin-bottom: 10px;
  color: #888;
  font-size: 14px;
}
.f-col a:hover {
  color: var(--white);
}

.f-copy {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #444;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--violet);
  padding: 20px;
  border-radius: 8px;
  z-index: 5000;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cp-content p {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .desk-menu,
  .h-right {
    display: none;
  }
  .burger {
    display: flex;
  }
  .container-fluid {
    padding: 0 20px;
  }

  .header {
    padding: 10px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hs-visual {
    display: none;
  } /* Hide visual on tablet/mob to focus on copy */

  .manifesto-grid,
  .tracks-layout,
  .journal-grid,
  .split-screen-form,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .quiz-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .stats-row {
    justify-content: center;
  }

  /* Fix header alignment on mobile */
  .h-wrap {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .section {
    padding: 80px 0;
  }
  .ssf-left,
  .ssf-right {
    padding: 30px;
  }

  /* Form responsiveness */
  .input-wrap input {
    width: 100%;
  }
}
.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
