:root {
  --bg-dark: #0a1128;
  --bg-darker: #050914;
  --accent: #ccff00; /* Lime */
  --accent-hover: #b3e600;
  --white: #ffffff;
  --text-grey: #a0aab5;
  --border: #1f293a;

  --font-mono: "JetBrains Mono", monospace;
  --font-main: "Manrope", sans-serif;

  --container: 1240px;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: var(--header-h); /* Prevent header overlap */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.lime-text {
  color: var(--accent);
}
.mono-sub {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 10px;
  display: block;
}
.lead {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  padding: 80px 0;
  position: relative;
}
.border-top {
  border-top: 1px solid var(--border);
}
.bg-darker {
  background-color: var(--bg-darker);
}
.bg-lime-accent {
  background-color: var(--accent);
  color: var(--bg-dark);
  padding: 20px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
  white-space: nowrap;
}

.btn--lime {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn--lime:hover {
  background: var(--white);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--bg-dark);
}

.btn--white {
  background: var(--white);
  color: var(--bg-dark);
}
.btn--white:hover {
  background: var(--accent);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn--small {
  padding: 10px 20px;
  font-size: 0.8rem;
}
.btn--full {
  width: 100%;
}

/* --- HEADER (Fixed & Adaptive) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  flex-shrink: 0;
  z-index: 1001;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 30px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-grey);
  text-transform: uppercase;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.highlight {
  color: var(--accent);
}

/* Controls & Burger */
.header__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.burger {
  display: none; /* Hidden by default on large screens */
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: left;
}
.burger:hover span {
  background: var(--accent);
}

/* --- Fullscreen Mobile Menu --- */
.fs-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 2000;
  transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-left: 2px solid var(--accent);
  overflow-y: auto;
}
.fs-menu.active {
  right: 0;
}

.fs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.fs-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}
.fs-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
.fs-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
  transition: 0.3s;
}

.fs-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.fs-links a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}
.fs-links a:hover {
  color: var(--accent);
  padding-left: 15px;
  border-color: var(--accent);
}
.fs-footer {
  margin-top: auto;
  padding-top: 40px;
}

/* --- Hero --- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image:
    linear-gradient(#1f293a 1px, transparent 1px),
    linear-gradient(90deg, #1f293a 1px, transparent 1px);
  background-size: 40px 40px;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--bg-dark) 90%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 12px;
  margin-bottom: 30px;
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(204, 255, 0, 0);
  }
}

.hero__grid-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.hgt-item p {
  color: var(--text-grey);
  font-size: 1.1rem;
}
.hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section-head {
  margin-bottom: 50px;
}

/* Bento */
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.bento-card {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-card {
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.05), transparent);
  border-color: var(--accent);
}
.card-icon {
  color: var(--accent);
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.bento-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
}
.card-stat {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.big-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}

/* Blog Split */
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-text p {
  margin-bottom: 20px;
  color: var(--text-grey);
}
.link-arrow {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent);
  font-family: var(--font-mono);
  text-decoration: underline;
}
.blog-preview {
  border: 1px solid var(--border);
  background: var(--bg-dark);
}
.bp-img img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.5s;
}
.blog-preview:hover .bp-img img {
  filter: grayscale(0%);
}
.bp-content {
  padding: 25px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 8px;
}
.bp-content h4 {
  margin: 15px 0;
  font-size: 1.3rem;
}

/* Income */
.income-block {
  background: var(--white);
  color: var(--bg-dark);
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.ib-header {
  background: var(--accent);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.status-active {
  font-family: var(--font-mono);
  font-weight: 700;
  border: 2px solid var(--bg-dark);
  padding: 5px 10px;
  align-self: start;
}
.ib-body {
  padding: 50px;
}
.ib-lead {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.ib-body p {
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-left: 1px solid var(--border);
}
.step-card {
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transition: 0.3s;
}
.step-card:hover {
  background: var(--bg-darker);
  border-color: var(--accent);
}
.step-idx {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 15px;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}
.marquee-content span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 50px;
  color: var(--bg-dark);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
.faq-head h2 {
  font-size: 1.8rem;
  color: var(--accent);
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-btn:hover {
  color: var(--accent);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.faq-content p {
  padding-bottom: 20px;
  color: var(--text-grey);
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-data {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cd-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.cd-label {
  color: var(--text-grey);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inp-box {
  display: flex;
  flex-direction: column;
}
.inp-box:nth-child(3) {
  grid-column: span 2;
} /* Email */
.inp-box label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.inp-box input {
  background: transparent;
  border: 1px solid var(--border);
  padding: 12px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
}
.inp-box input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(204, 255, 0, 0.05);
}
.err {
  color: #ff3333;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.inp-box.error input {
  border-color: #ff3333;
}
.inp-box.error .err {
  display: block;
}
.captcha-box input {
  width: 100px;
}

.check-box {
  grid-column: span 2;
  display: flex;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
}
.check-box input {
  margin-top: 4px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.check-box label {
  font-size: 0.8rem;
  color: var(--text-grey);
  line-height: 1.4;
}
.check-box a {
  color: var(--white);
  text-decoration: underline;
}
.grid-form button {
  grid-column: span 2;
  margin-top: 10px;
}

/* Footer */
.footer {
  padding: 60px 0 20px;
  background: var(--bg-darker);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.ft-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}
.ft-col {
  display: flex;
  flex-direction: column;
}
.ft-col h4 {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.ft-col a {
  display: block;
  color: var(--text-grey);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.ft-col a:hover {
  color: var(--white);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: #555;
  font-size: 0.8rem;
}

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: var(--bg-darker);
  border: 1px solid var(--accent);
  padding: 25px;
  z-index: 9999;
  display: none;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
}
.cookie-body h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.cookie-body p {
  font-size: 0.9rem;
  color: var(--text-grey);
  margin-bottom: 20px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Mobile (Below 1024px) */
@media (max-width: 1024px) {
  /* Header Changes */
  .desktop-nav {
    display: none;
  } /* Hide desktop menu */
  .header-cta {
    display: none;
  } /* Hide register button in header on tablet */

  .burger {
    display: flex;
  } /* Show burger */

  /* Layout Adjustments */
  .hero__content {
    text-align: center;
  }
  .hero__grid-text {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__actions {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .split-screen {
    grid-template-columns: 1fr;
  }
  .split-visual {
    display: none;
  } /* Simplify on smaller screens */

  .income-block {
    grid-template-columns: 1fr;
  }
  .ib-header {
    flex-direction: row;
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (Below 600px) */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }

  .hero__grid-text {
    border: none;
    padding: 10px 0;
    margin: 20px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .grid-form {
    grid-template-columns: 1fr;
  }
  .inp-box:nth-child(3),
  .check-box,
  .grid-form button {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .cookie-modal {
    width: auto;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

.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;
}

.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;
  }
}
