/* ════════════════════════════════════════════════════════════
Theme Name: VERAN VENTURES
Author: Sound Press
Description: A custom WordPress theme designed and developed specifically for VERAN VENTURES.
Version: 1.0   
   ════════════════════════════════════════════════════════════ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --navy:        #0F2044;
  --navy-deep:   #091629;
  --navy-mid:    #162B55;
  --navy-soft:   #1E3A6E;
  --green:       #1DB954;
  --green-dark:  #169A43;
  --green-light: #24D862;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --grey-100:    #EEF1F7;
  --grey-200:    #D0D7E6;
  --grey-400:    #8B97B5;
  --grey-600:    #4A5578;

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Trebuchet MS', 'Gill Sans', 'Segoe UI', sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --max-width: 1080px;
  --header-h: 88px;

  --radius:    4px;
  --shadow:    0 4px 32px rgba(9, 22, 41, 0.12);
  --shadow-lg: 0 12px 48px rgba(9, 22, 41, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.section { padding-block: var(--space-12); }

/* ── Section tags ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-4);
}
.section-tag--light { color: var(--green-light); }

/* ── Headings ────────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: var(--space-6);
}
.section-heading--light { color: var(--white); }

.section-subheading {
  font-size: 1.1rem;
  color: var(--grey-400);
  max-width: 580px;
  font-style: italic;
}
.section-subheading--dark { color: var(--grey-600); }

.section-intro { margin-bottom: var(--space-16); }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid var(--grey-200);
  transition: all var(--transition);
}
.header.scrolled {
  height: 68px;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(15, 32, 68, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: 100%;
}

/* ── Logo on white header ── */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}
.header__nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.header__nav a:hover { color: var(--green-dark); }
.header__nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,185,84,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,185,84,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(#0E2A47) 45%, rgba(9,22,41,0.5) 100%);
  pointer-events: none;
}

.hero__bg-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.hero__bg-mark img { width: 100%; }

.story {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.story__meta {
  position: static;
  top: auto;
  margin: 0 auto var(--space-4);
  max-width: 760px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--space-8);
  max-width: 780px;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: var(--space-12);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.1);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

.hero__scroll-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(29,185,84,0.6));
  z-index: 2;
}

/* ════════════════════════════════════════════════════════════
   OUR STORY
   ════════════════════════════════════════════════════════════ */
.story {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
}

.story__meta {
  position: static;
  top: auto;
  margin-bottom: 0;
}

.story__accent-line {
  display: none;
}

.story__content .section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.story__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.story__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-600);
  max-width: 620px;
}

.story__quote {
  border-left: 3px solid var(--green);
  padding-left: var(--space-6);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  max-width: 540px;
  margin-top: var(--space-4);
}

.story__v-mark {
  position: absolute;
  right: -60px; bottom: -40px;
  width: 40px;
  opacity: 0.04;
  pointer-events: none;
}
.story__v-mark img { width: 100%; }

/* ════════════════════════════════════════════════════════════
   WHAT WE DO
   ════════════════════════════════════════════════════════════ */
.what-we-do {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.what-we-do::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(29,185,84,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.what-we-do .section-subheading {
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-3);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.pillar {
  background: var(--navy);
  padding: var(--space-10) var(--space-8);
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.pillar:hover { background: var(--navy-mid); }
.pillar--accent { background: var(--navy-mid); }
.pillar--accent:hover { background: var(--navy-soft); }

.pillar__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pillar__slash {
  width: 32px;
  height: 2px;
  background: var(--green);
  margin-block: var(--space-2);
}

.pillar__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

.pillar__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════════════════════════
   COMMUNITY
   ════════════════════════════════════════════════════════════ */
.community {
  background: var(--off-white);
  position: relative;
}

.community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.community__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-600);
  margin-top: 0;
  margin-bottom: var(--space-3);
}
.community__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-400);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(29,185,84,0.1);
  transform: translateY(-2px);
}

.feature__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(29,185,84,0.08);
  border-radius: 50%;
  color: var(--green);
}

.feature__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.feature__body {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--grey-400);
}

/* ════════════════════════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: 'V';
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.portfolio__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-6);
  align-items: start;
}

.portfolio__desc p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}

.portfolio__thesis {
  font-style: italic;
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.9rem !important;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.portfolio-cat {
  background: var(--navy);
  padding: var(--space-10);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.portfolio-cat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.portfolio-cat:hover { background: var(--navy-mid); }
.portfolio-cat:hover::after { width: 100%; }

.portfolio-cat__icon {
  display: block;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: var(--space-3);
  opacity: 0.85;
}

.portfolio-cat h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: var(--space-2);
}

.portfolio-cat p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* ════════════════════════════════════════════════════════════
   GET INVOLVED
   ════════════════════════════════════════════════════════════ */
.get-involved {
  background: var(--grey-100);
}
.get-involved .section-heading { color: var(--navy); }
.get-involved .section-tag { color: var(--green-dark); }
.get-involved .section-intro { margin-bottom: var(--space-8); }

.involvement {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.involvement-card {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: all var(--transition);
}


.involvement-card--founders,
.involvement-card--investors,
.involvement-card--partners {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--grey-200);
}

.involvement-card--founders:hover,
.involvement-card--investors:hover,
.involvement-card--partners:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.involvement-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.involvement-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.45;
  flex-grow: 1;
}

/* CTA text lines at bottom of involvement cards (no links) */
.involvement-card__cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(29,185,84,0.2);
}
.involvement-card__cta--dark {
  color: var(--green-dark);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-block: var(--space-12);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-3);
}

.footer__tagline {
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.footer__right {
  text-align: right;
}

.footer__site {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-2);
  letter-spacing: 0.04em;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .story__inner { grid-template-columns: 140px 1fr; gap: var(--space-10); }
  .community__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .portfolio__header { grid-template-columns: 1fr; gap: var(--space-8); }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-24: 4rem; }

  .header__logo img {
    height: 42px;
    padding: 5px 10px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-6) var(--space-8);
    gap: var(--space-5);
    border-bottom: 1px solid var(--grey-200);
    margin-left: 0;
  }
  .header__nav.open { display: flex; }
  .header__nav a { font-size: 0.9rem; color: var(--navy); }

  .nav-toggle { display: block; }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .stat__divider { display: none; }

  .story__inner { grid-template-columns: 1fr; }
  .story__meta { position: static; }
  .story__v-mark { display: none; }

  .feature-grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .involvement { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__right { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-5); }
  .hero__headline { font-size: 2rem; }
  .pillar { padding: var(--space-8) var(--space-5); }
  .involvement-card { padding: var(--space-8) var(--space-6); }
  .portfolio-cat { padding: var(--space-6); }
  .header__logo img { height: 36px; padding: 4px 8px; }
}

/* Story section — widen content for better line length */
.story__content,
.story__meta {
  max-width: var(--max-width);
  margin-left: 0;
  margin-right: auto;
}

.story__body p {
  max-width: 820px;
}

.story__quote {
  max-width: 760px;
}