/* ================= PARTNERS ================= */

.partners-section {
  padding: 80px 0;
}

.partners-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .partners-container {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .partners-left {
    max-width: 100%;
  }

  .partners-right {
    width: 100%;
  }

  .logo-card {
    min-width: 80px;
    height: 56px;
  }

  .logo-card img {
    max-height: 24px;
  }

  .logo-track {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .partners-container {
    gap: 32px;
  }

  .partners-left {
    gap: 12px;
  }

  .partners-left h2 {
    font-size: 1.75rem;
  }

  .logo-row {
    margin: 0 -16px;
  }

  .logo-row::before,
  .logo-row::after {
    width: 40px;
  }

  .logo-card {
    min-width: 70px;
    height: 48px;
    padding: 8px 16px;
  }

  .logo-card img {
    max-height: 20px;
  }

  .logo-track {
    gap: 16px;
  }
}

/* LEFT */
.partners-left {
  color: var(--gray-900);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

/* RIGHT */
.partners-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

/* ================= LOGO ROW ================= */

.logo-row {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade edges */
.logo-row::before,
.logo-row::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.logo-row::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logo-row::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* TRACK */
.logo-track {
  display: flex;
  gap: 32px;
  width: max-content;
}

/* LOGO CARD */
.logo-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 100px;
  height: 64px;

  flex-shrink: 0;

  transition: all 0.3s ease;
}

.logo-card img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.logo-card:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* ================= ANIMATION ================= */

/* assumes duplicated logos in HTML */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.scroll-left {
  animation: scrollLeft 20s linear infinite;
}

.scroll-right {
  animation: scrollRight 20s linear infinite;
}

/* ================= CAREERS SECTION ================= */

.careers-section {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

/* TEXTURE (NOW ABOVE CARD) */
.careers-texture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 150%;
  max-width: 2200px;
  height: auto;

  pointer-events: none;
  opacity: 0.5;

  z-index: 2; /* 🔥 ABOVE EVERYTHING */
}

.careers-texture svg {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT */
.careers-container {
  position: relative;
  z-index: 1;
}

/* CARD */
.careers-card {
  position: relative;
  z-index: 1; /* stays below texture */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 32px;
  padding: 80px 104px;

  border-radius: 16px;
  background: var(--secondary-700);

  text-align: center;
}

/* TEXT COLOR */
.text-light {
  color: var(--gray-50);
}

/* BUTTON FIX (prevents breaking) */
.careers-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.careers-card .btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .careers-card {
    padding: 64px 48px;
  }

  .careers-texture {
    width: 180%;
  }
}

/* Mobile */
@media (max-width: 640px) {

  .careers-section {
    padding: 32px 0;
  }

  .careers-card {
    padding: 40px 24px;
    gap: 20px;
  }

  .careers-texture {
    width: 220%;
    opacity: 0.35;
  }
}


/*========section========*/
/* ================= VC GROWTH SECTION ================= */

.vc-growth-section {
  position: relative;
  overflow: hidden;

  font-family: 'DM Sans', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
}

/* RESET ONLY INSIDE SECTION */
.vc-growth-section *,
.vc-growth-section *::before,
.vc-growth-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* VARIABLES ONLY INSIDE SECTION */
.vc-growth-section {
  --navy-deep: #04102b;
  --navy-mid: #071a3e;
  --navy-light: #0d2a5e;
  --blue-bright: #1a6bc4;
  --blue-accent: #2e8fff;
  --blue-glow: #4aaeff;
  --cyan-soft: #7dd3fc;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.7);
  --white-faint: rgba(255,255,255,0.12);
  --card-bg: rgba(255,255,255,0.97);
  --card-text: #0f1f3d;
}

/* ================= SECTION ================= */

.vc-growth-section .section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 6vw;
}

/* BG */
.vc-growth-section .section::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(26,107,196,0.28) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(13,42,94,0.6) 0%,
      transparent 60%
    ),
    linear-gradient(
      160deg,
      #04102b 0%,
      #071a3e 50%,
      #081530 100%
    );

  z-index: 0;
}

/* GRID */
.vc-growth-section .section::after {
  content: '';
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  z-index: 0;
}

/* ================= INNER ================= */

.vc-growth-section .section-inner {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT ================= */

.vc-growth-section .left {
  padding-right: 40px;
}

.vc-growth-section .left h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.vc-growth-section .left p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 380px;
}

/* ================= RIGHT ================= */

.vc-growth-section .right {
  position: relative;
}

.vc-growth-section .timeline-wrap {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.vc-growth-section .arc-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
}

/* ================= ITEMS ================= */

.vc-growth-section .items {
  margin-left: 50px;

  display: flex;
  flex-direction: column;
}

.vc-growth-section .item {
  position: relative;
  padding: 12px 0;
}

.vc-growth-section .dot {
  position: absolute;
  left: -50px;
  top: 50%;

  transform: translateY(-50%) translateX(-4px);

  width: 14px;
  height: 14px;

  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.35);

  background: var(--navy-mid);

  z-index: 2;
}

.vc-growth-section .pill {
  display: inline-flex;
  align-items: center;

  padding: 10px 22px;

  border-radius: 999px;

  background: rgba(30,100,200,0.35);

  border: 1px solid rgba(74,174,255,0.3);

  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;

  color: #fff;

  backdrop-filter: blur(6px);
}

.vc-growth-section .card {
  background: var(--card-bg);

  border-radius: 16px;

  padding: 22px 26px;

  max-width: 320px;

  margin-top: 12px;
}

.vc-growth-section .card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;

  color: var(--card-text);

  margin-bottom: 10px;
}

.vc-growth-section .card p {
  font-size: 0.82rem;
  line-height: 1.65;

  color: #375080;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .vc-growth-section .section {
    padding: 64px 24px;
  }

  .vc-growth-section .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vc-growth-section .left {
    padding-right: 0;
  }

  .vc-growth-section .card {
    max-width: 100%;
  }

}

