/*
Theme Name: Neon Finance Brutalism
Author: Assistant
Description: A high-contrast, non-standard design for financial services.
Version: 1.4
*/

:root {
  /* COLORS: "Cyber-Finance" Palette */
  --c-bg: #050505;        /* Void Black */
  --c-surface: #111111;   /* Dark Grey Surface */
  --c-text: #e0e0e0;      /* Off-white text */
  --c-text-muted: #888888;
  
  --c-accent: #ccff00;    /* Acid Lime - Primary Accent */
  --c-accent-2: #64ffda;  /* Teal - Secondary Accent */
  --c-accent-3: #ff4d4d;  /* Coral/Red - Alert Accent */
  
  --c-border: #333333;
  --c-border-active: #ccff00;

  /* TYPOGRAPHY */
  --font-main: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* SIZES */
  --container: 1400px;
  --header-h: 80px;
}

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

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* CONTENT TYPOGRAPHY */
.content-body, .entry-content {
  max-width: 800px; 
  margin: 0 auto; 
  font-size: 1.15rem; 
  color: #e0e0e0;
  line-height: 1.8;
}

.content-body p, .entry-content p {
  margin-bottom: 1.5rem;
}

.content-body h2, .entry-content h2,
.content-body h3, .entry-content h3 {
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content-body ul, .entry-content ul, 
.content-body ol, .entry-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.content-body li, .entry-content li {
  margin-bottom: 0.8rem;
  list-style-type: disc;
}

.page-featured-image {
  margin-bottom: 4rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}

/* NOISE OVERLAY */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* TYPOGRAPHY UTILS */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

/* --- HEADER: FLOATING & MINIMAL --- */
.neon-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 2rem;
  mix-blend-mode: difference; /* Creative blend mode */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  display: flex;
  align-items: baseline;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  display: inline-block;
  margin-left: 4px;
  border-radius: 50%;
}

/* MENU TRIGGER */
.desktop-nav-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.menu-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

.desktop-nav-trigger:hover .hamburger span:first-child { transform: translateX(-5px); }
.desktop-nav-trigger:hover .hamburger span:last-child { transform: translateX(5px); }

/* FULLSCREEN MENU */
.fullscreen-menu {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.fullscreen-menu.active {
  pointer-events: all;
  opacity: 1;
}

.menu-backdrop {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #050505; /* Solid background */
  z-index: 1;
}

.menu-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin: 1.5rem 0;
  overflow: hidden;
}

.menu-list a {
  font-family: var(--font-main);
  font-size: 4rem;
  font-weight: 700;
  color: #fff; /* Solid white text */
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

.menu-list a:hover {
  color: var(--c-accent);
  transform: skewX(-10deg);
}

.menu-footer {
  margin-top: 4rem;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* --- HERO SECTION --- */
.neon-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, 10vw, 12rem);
  line-height: 0.85;
  margin-bottom: 3rem;
}

.hero-title .line-1 { margin-left: 0; }
.hero-title .line-2 { margin-left: 15vw; color: var(--c-accent); }
.hero-title .line-3 { 
  margin-left: 5vw; 
  color: transparent; 
  -webkit-text-stroke: 2px #fff; 
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: auto;
  max-width: 600px;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 300px;
  color: var(--c-text-muted);
}
.hero-desc .highlight { color: #fff; border-bottom: 1px solid var(--c-accent); }

.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--c-accent);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  font-family: var(--font-main);
  text-transform: uppercase;
}
.btn-neon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

/* DECORATION */
.hero-shape-1 {
  position: absolute;
  top: 20%; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(100,255,218,0.15) 0%, rgba(0,0,0,0) 70%);
  filter: blur(50px);
}
.hero-shape-2 {
  position: absolute;
  bottom: 10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,255,0,0.1) 0%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
}

/* TICKER */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--c-accent);
  padding: 0.8rem 0;
  transform: rotate(-1deg) scale(1.02);
  margin: 2rem 0;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  color: #000;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-main);
  padding-right: 2rem;
  text-transform: uppercase;
}

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

/* --- MAIN CONTENT & SECTIONS --- */
.main-content {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.section-title {
  font-size: 3rem;
  margin: 0;
}
.section-title .accent { color: var(--c-accent); }

.section-line {
  flex-grow: 1;
  height: 1px;
  background: var(--c-border);
  margin-bottom: 0.5rem;
}

/* ABOUT SECTIONS - UPDATED */
.about-lead-section {
  padding: 8rem 0;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-label {
  color: var(--c-accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.lead-big-text {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  margin: 0;
}

.lead-desc-text {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.lead-tags span {
  display: inline-block;
  border: 1px solid var(--c-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.lead-tags span:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

/* Why/Mission Block */
.mission-section {
  padding: 6rem 0;
  border-top: 1px solid var(--c-border);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.mission-title {
  font-size: 1.5rem;
  color: var(--c-text-muted);
}
.mission-text {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.8;
}

/* Feature Grid (Reusing/Extending Bento) */
.features-section {
  padding: 6rem 0;
}
.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: all 0.3s;
  border-radius: 12px;
}
.feature-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-5px);
  background: #161616;
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--c-accent);
}
.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-desc {
  font-size: 1rem;
  color: var(--c-text-muted);
}

/* Audience List */
.audience-section {
  padding: 6rem 0;
  background: var(--c-surface);
  margin: 4rem 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.audience-list {
  list-style: none;
}
.audience-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.1rem;
}
.audience-list li::before {
  content: '✓';
  color: var(--c-accent-2);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Principles */
.principles-box {
  background: var(--c-accent);
  color: #000;
  padding: 4rem;
  border-radius: 20px;
  margin-top: 2rem;
}
.principles-box h3 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.principles-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
}

/* Timeline / How it works */
.timeline-section {
  padding: 6rem 0;
}
.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--c-border);
}
.timeline-item {
  padding-left: 3rem;
  position: relative;
  margin-bottom: 4rem;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: -9px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--c-bg);
  border: 4px solid var(--c-accent);
  border-radius: 50%;
}
.timeline-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
.timeline-text {
  color: var(--c-text-muted);
  font-size: 1.1rem;
}
.timeline-sublist {
  margin-top: 1rem;
  padding-left: 1rem;
  list-style: disc;
  color: #fff;
}
.timeline-sublist li {
  margin-bottom: 0.5rem;
}


/* BENTO GRID (Blog) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-auto-flow: dense;
}

.bento-item {
  position: relative;
  background: var(--c-surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: border-color 0.3s;
}

.bento-item:hover {
  border-color: var(--c-accent);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall  { grid-row: span 2; }
.bento-wide  { grid-column: span 2; }

.bento-link {
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-img-wrap {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  min-height: 250px;
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  filter: grayscale(30%); /* Reduced from 100% */
}

.bento-item:hover .bento-img-wrap img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.placeholder-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(45deg, #111, #222);
}

.bento-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.bento-item:hover .bento-overlay { opacity: 1; }

.read-more-circle {
  width: 60px; height: 60px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  transform: scale(0);
  transition: transform 0.3s 0.1s;
}

.bento-item:hover .read-more-circle { transform: scale(1); }

.bento-content {
  padding: 1.5rem;
  background: var(--c-surface);
  position: relative;
  z-index: 2;
}

.bento-cat {
  font-size: 0.8rem;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.bento-title {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.3;
}

/* PAGINATION */
.pagination-neon {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.pagination-neon .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  font-weight: 700;
}

.pagination-neon .current {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* INFO/FOOTER */
.neon-footer {
  background: #000;
  color: #fff;
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--c-border);
}

.footer-cta {
  font-size: clamp(2rem, 5vw, 6rem);
  line-height: 1;
}

.cta-link {
  color: var(--c-accent-2);
  border-bottom: 3px solid transparent;
}
.cta-link:hover {
  border-bottom-color: var(--c-accent-2);
}
.arrow-diag {
  font-size: 0.5em;
  vertical-align: top;
}

.footer-divider {
  height: 1px;
  background: var(--c-border);
  margin: 4rem 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-block p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.menu-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-block a {
  color: #fff;
  font-size: 1.1rem;
}
.menu-block a:hover {
  color: var(--c-accent);
  padding-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title { font-size: 6rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: auto; }
  .bento-tall { grid-row: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 2rem; }
  
  .mission-grid, .audience-grid, .lead-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 3.5rem; }
  .hero-title .line-2 { margin-left: 0; }
  .hero-title .line-3 { margin-left: 0; }
  
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: auto; }
  
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-line { width: 100%; height: 1px; }

  .fullscreen-menu .menu-list a { font-size: 2.5rem; }
  
  .lead-big-text { font-size: 3rem; }
}
