:root {
  --bg: #f4f4f4;
  --black: #111111;
  --yellow: #d4ff00; /* Acid Yellow */
  --white: #ffffff;
  --grey: #e0e0e0;
  --font-head: "Archivo Black", sans-serif;
  --font-body: "Manrope", sans-serif;
  --border: 2px solid var(--black);
  --shadow: 4px 4px 0px var(--black);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 400; /* Archivo Black is bold by default */
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 30px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--black);
  color: var(--white);
  display: inline-block;
  padding: 5px 15px;
  transform: rotate(-1deg);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.highlight {
  background: var(--yellow);
  padding: 0 10px;
}

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

/* Buttons */
.btn-brutal {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border: var(--border);
  padding: 15px 30px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.2s;
}

.btn-brutal:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--black);
  background: #eee;
}

.btn-brutal-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  border: var(--border);
  padding: 15px 30px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.2s;
}

.btn-brutal-yellow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--black);
  background: #c3eb00;
}

.btn-brutal.small,
.btn-brutal-yellow.small {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-brutal.lg,
.btn-brutal-yellow.lg {
  padding: 20px 40px;
  font-size: 1.2rem;
}
.full-w {
  width: 100%;
  text-align: center;
}
.full {
  width: 100%;
}

/* Header */
.brutal-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: var(--border);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-txt {
  font-family: var(--font-head);
  line-height: 0.9;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
}

.desk-nav {
  display: flex;
  gap: 30px;
}
.nav-item {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nav-item:hover {
  text-decoration: underline;
  background: var(--yellow);
}

.h-act {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Burger */
.burger-box {
  display: none;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 8px;
  cursor: pointer;
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--yellow);
  z-index: 2000;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  border-left: var(--border);
}
.mob-menu.active {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: var(--border);
  background: var(--white);
}
.mm-head span {
  font-weight: 800;
  font-size: 1.2rem;
}
#closeMenu {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.mm-body {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mm-body a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--black);
}
.mm-body a:hover {
  text-decoration: underline;
}
.mm-cta {
  font-size: 1rem !important;
  margin-top: 20px;
  background: var(--black);
  color: var(--yellow) !important;
  padding: 10px;
  display: inline-block;
  text-align: center;
}

.mm-foot {
  margin-top: auto;
  padding: 20px;
  border-top: var(--border);
  background: var(--white);
  text-align: center;
  font-weight: 700;
}

/* Hero */
.hero-brutal {
  padding-top: 150px;
  padding-bottom: 100px;
  border-bottom: var(--border);
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 5px 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-img-box {
  position: relative;
  border: var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 10px;
}
.hero-img-box img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

.float-sticker {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--yellow);
  border: var(--border);
  padding: 20px;
  text-align: center;
  transform: rotate(-5deg);
  box-shadow: var(--shadow);
}
.s1 span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
}
.s1 strong {
  font-size: 2rem;
  font-family: var(--font-head);
  line-height: 1;
}

/* Ticker */
.ticker-wrap {
  background: var(--black);
  color: var(--white);
  padding: 15px 0;
  overflow: hidden;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-head);
  border-bottom: var(--border);
}
.ticker {
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Section Generic */
.section {
  padding: 100px 0;
  border-bottom: var(--border);
}
.sec-head {
  margin-bottom: 60px;
}

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

.b-card {
  background: var(--white);
  border: var(--border);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.b-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--black);
}

.icon-sq {
  width: 60px;
  height: 60px;
  background: var(--black);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  margin-bottom: 20px;
}

/* Tracks */
.bg-yellow {
  background: var(--yellow);
}

.grid-2-large {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.lead-text {
  font-weight: 800;
  font-size: 1.2rem;
}

.check-list {
  margin: 30px 0;
  font-family: var(--font-head);
}
.mt-30 {
  margin-top: 30px;
}

.cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.track-card {
  background: var(--white);
  border: var(--border);
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
}
.tc-num {
  font-size: 3rem;
  font-family: var(--font-head);
  color: var(--grey);
  line-height: 0.8;
}
.track-card h4 {
  font-size: 1.5rem;
  margin: 0;
}
.track-card p {
  margin: 5px 0 10px;
  font-size: 0.9rem;
}
.link-u {
  text-decoration: underline;
  font-weight: 800;
}

/* Income */
.money-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.mb-left {
  border-right: var(--border);
}
.mb-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.mb-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-row {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}
.stat strong {
  font-size: 2.5rem;
  font-family: var(--font-head);
  display: block;
  line-height: 1;
}
.stat span {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Steps */
.bg-dots {
  background-image: radial-gradient(var(--black) 2px, transparent 2px);
  background-size: 30px 30px;
}
.max-600 {
  max-width: 600px;
  margin: 0 auto 50px;
  background: var(--white);
  border: var(--border);
  padding: 10px;
  display: inline-block;
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-b {
  background: var(--white);
  border: var(--border);
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow);
}
.sb-head {
  background: var(--black);
  color: var(--white);
  padding: 5px 10px;
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.review-card {
  border: var(--border);
  padding: 40px;
  background: var(--white);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-family: var(--font-head);
  opacity: 0.1;
}
.r-txt {
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
}
.r-auth {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.r-av {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* FAQ */
.narrow-cont {
  max-width: 800px;
}
.brutal-accordion {
  border: var(--border);
}
.acc-item {
  border-bottom: var(--border);
  background: var(--white);
}
.acc-item:last-child {
  border-bottom: none;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
}
.acc-btn:hover {
  background: #f9f9f9;
}
.acc-btn::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 800;
}
.acc-btn.active::after {
  content: "-";
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  background: #fafafa;
}
.acc-content p {
  padding: 0 25px 25px;
  border-top: 1px dashed #ccc;
  padding-top: 20px;
}

/* Form */
.form-zone {
  background: var(--yellow);
}
.form-brutal-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: var(--border);
  box-shadow: 10px 10px 0px var(--black);
  padding: 60px;
}

.fb-head {
  text-align: center;
  margin-bottom: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inp-wrap {
  margin-bottom: 20px;
}
.inp-wrap label {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.inp-wrap input {
  width: 100%;
  padding: 15px;
  border: var(--border);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #f4f4f4;
}
.inp-wrap input:focus {
  background: #fff;
  outline: none;
  box-shadow: 4px 4px 0px #ccc;
}

.err-msg {
  color: red;
  font-size: 0.8rem;
  font-weight: 700;
  display: none;
  margin-top: 5px;
}
.inp-wrap.error input {
  border-color: red;
}
.inp-wrap.error .err-msg {
  display: block;
}

.cap-wrap input {
  width: 100px;
}

.chk-wrap {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.chk-wrap input {
  width: 20px;
  height: 20px;
  border: var(--border);
}
.chk-wrap label {
  font-size: 0.9rem;
  line-height: 1.4;
}
.chk-wrap a {
  text-decoration: underline;
  font-weight: 800;
}

/* Footer */
.footer-brutal {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 20px;
  border-top: var(--border);
}

.f-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.f-brand {
  font-family: var(--font-head);
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
  color: var(--yellow);
}
.f-addr {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
}
.f-addr a {
  display: block;
  color: #fff;
  text-decoration: underline;
  margin-top: 5px;
}

.f-block h5 {
  color: var(--yellow);
  margin-bottom: 20px;
  font-size: 1rem;
}
.f-block a {
  display: block;
  color: #ccc;
  margin-bottom: 10px;
}
.f-block a:hover {
  color: var(--white);
  padding-left: 5px;
}

.f-copyright {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #666;
  font-size: 0.8rem;
}

/* Cookie */
.cookie-brutal {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border: var(--border);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: var(--shadow);
  width: 300px;
}
.cookie-brutal p {
  margin: 0 0 15px 0;
  font-weight: 700;
}
#acceptCookie {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
}
#acceptCookie:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  h2 {
    font-size: 1.8rem;
  }
  .mb-right {
    padding: 40px;
  }
  .track-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-img-box {
    display: none;
  } /* Hide heavy image on smaller screens or adjust */
  .grid-2-large {
    grid-template-columns: 1fr;
  }
  .money-box {
    grid-template-columns: 1fr;
  }
  .mb-left {
    height: 300px;
    border-right: none;
    border-bottom: var(--border);
  }
  .steps-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desk-nav,
  .h-act .btn-brutal,
  .h-act .btn-brutal-yellow {
    display: none;
  }
  .burger-box {
    display: block;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .steps-flow {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .f-layout {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.5rem;
  }
  .form-brutal-box {
    padding: 30px 20px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  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;
  background: none;
}

.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 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .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;
  }
}
