/* ── Box sizing reset ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Design tokens ── */
:root {
  --trive-bg:          #0A0E1A;
  --trive-teal:        #19817F;
  --trive-blue:        #4888F1;
  --trive-olive:       #6C8E2F;
  --trive-white:       #ffffff;
  --trive-gray:        #9CA3AF;
  --trive-card-bg:     rgba(255,255,255,0.05);
  --trive-card-border: rgba(255,255,255,0.10);
  --trive-font:        'Montserrat', sans-serif;
}

/* ── Base ── */
html, body {
  margin: 0;
  padding: 0;
  background: var(--trive-bg);
  color: var(--trive-white);
  font-family: var(--trive-font);
  min-height: 100vh;
}

/* ── Animated grid background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,129,127,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,129,127,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ── Orb glows ── */
.trive-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: triveOrbFloat 25s ease-in-out infinite;
}
.trive-orb-teal {
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25,129,127,0.35) 0%, rgba(72,136,241,0.15) 60%, transparent 100%);
  animation-duration: 28s;
}
.trive-orb-blue {
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(72,136,241,0.35) 0%, rgba(108,142,47,0.15) 60%, transparent 100%);
  animation-direction: reverse;
  animation-duration: 22s;
}
@keyframes triveOrbFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.25) rotate(180deg); }
}

/* ── Spotlight ── */
#trive-spotlight {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(25,129,127,0.07) 0%, transparent 70%);
  filter: blur(60px);
}

/* ── Particle canvas ── */
#trive-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#trive-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,14,26,0.85);
  font-family: var(--trive-font);
}
.trive-logo img { height: 36px; width: auto; display: block; }
.trive-logo { text-decoration: none; }

.trive-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.trive-nav-links a {
  color: var(--trive-gray);
  font-weight: 500;
  text-decoration: none;
  font-size: .95rem;
  position: relative;
  transition: color .25s;
}
.trive-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--trive-teal), var(--trive-blue));
  transition: width .3s;
}
.trive-nav-links a:hover,
.trive-nav-links a.active { color: var(--trive-teal); }
.trive-nav-links a:hover::after,
.trive-nav-links a.active::after { width: 100%; }

/* ── Gradient button (Contact Us) ── */
.trive-btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--trive-teal), var(--trive-blue));
  color: #ffffff !important;
  font-weight: 700;
  font-family: var(--trive-font);
  font-size: .95rem;
  text-decoration: none;
  transition: box-shadow .25s, transform .2s;
}
.trive-btn-grad:hover {
  background: linear-gradient(90deg, #1fa09e, #6aa3f5);
  box-shadow: 0 0 20px rgba(25,129,127,0.55), 0 0 40px rgba(72,136,241,0.3);
  transform: scale(1.04);
}

/* ── Outline button ── */
.trive-btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  border: 2px solid var(--trive-teal);
  color: var(--trive-teal);
  font-weight: 700;
  font-family: var(--trive-font);
  font-size: 1rem;
  cursor: pointer;
  background: transparent;
  transition: background .25s, color .25s, border-color .25s;
  text-decoration: none;
}
.trive-btn-outline:hover {
  background: linear-gradient(90deg, var(--trive-teal), var(--trive-blue));
  color: #fff;
  border-color: transparent;
}

/* ── Mobile nav ── */
#trive-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
#trive-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
#trive-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,14,26,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0 16px;
  position: sticky;
  top: 61px;
  z-index: 999;
}
#trive-mobile-menu a {
  color: var(--trive-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 14px 24px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: block;
  transition: color .2s;
}
#trive-mobile-menu a:hover { color: var(--trive-teal); }
#trive-mobile-menu .trive-btn-grad { margin: 12px 24px 0; display: block; text-align: center; }

@media (max-width: 768px) {
  #trive-nav { padding: 14px 20px; }
  .trive-nav-links { display: none; }
  #trive-hamburger { display: flex; }
}

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.trive-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.trive-reveal.visible { opacity: 1; transform: none; }
.trive-reveal-d1 { transition-delay: .1s; }
.trive-reveal-d2 { transition-delay: .2s; }
.trive-reveal-d3 { transition-delay: .3s; }

/* ══════════════════════════════════
   PAGE ROUTER
══════════════════════════════════ */
.page { display: none; position: relative; z-index: 1; }
.page.active { display: block; }

/* ══════════════════════════════════
   NEWSLETTER
══════════════════════════════════ */
#trive-newsletter,
#trive-newsletter-about,
#trive-newsletter-team {
  position: relative;
  z-index: 10;
  padding: 80px 48px;
  font-family: var(--trive-font);
}
@media (max-width: 768px) {
  #trive-newsletter,
  #trive-newsletter-about,
  #trive-newsletter-team { padding: 48px 20px; }
}
.trive-newsletter-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--trive-card-border);
  border-radius: 28px;
  padding: 64px 48px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 600px) { .trive-newsletter-card { padding: 40px 24px; } }
.trive-newsletter-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.trive-newsletter-card p {
  color: var(--trive-gray);
  margin-bottom: 36px;
  font-size: 1rem;
}
.trive-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 600px) { .trive-newsletter-form { flex-direction: column; } }
.trive-newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--trive-card-border);
  color: #fff;
  font-family: var(--trive-font);
  font-size: .95rem;
  outline: none;
  transition: border-color .25s;
}
.trive-newsletter-form input::placeholder { color: #6B7280; }
.trive-newsletter-form input:focus { border-color: var(--trive-teal); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#trive-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 48px 32px;
  font-family: var(--trive-font);
  background: var(--trive-bg);
}
@media (max-width: 768px) { #trive-footer { padding: 40px 20px 24px; } }
.trive-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media (max-width: 900px) { .trive-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .trive-footer-grid { grid-template-columns: 1fr; } }
.trive-footer-brand p {
  color: var(--trive-gray);
  font-size: .9rem;
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.7;
}
.trive-footer-col h4 {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: .95rem;
  color: #fff;
}
.trive-footer-col a {
  display: block;
  color: var(--trive-gray);
  text-decoration: none;
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.trive-footer-col a:hover { color: var(--trive-teal); }
.trive-footer-bottom {
  text-align: center;
  color: var(--trive-gray);
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   SHARED PAGE WRAPPER
══════════════════════════════════ */
#trive-body {
  position: relative;
  z-index: 1;
}
.t-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) { .t-section { padding: 48px 20px; } }


/* === PAGE: home === */

/* ── Gradient text ── */
.grad-text {
  background: linear-gradient(90deg, #fff 0%, #19817F 55%, #4888F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section spacing ── */
.t-section {
  position: relative;
  z-index: 10;
  padding: 80px 48px;
}
@media (max-width: 768px) { .t-section { padding: 48px 20px; } }

/* ── Section headers ── */
.t-header { text-align: center; margin-bottom: 56px; }
.t-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.t-header p { color: #9CA3AF; max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ── Center helper ── */
.t-center { text-align: center; margin-top: 48px; }

/* ── Shared button: outline style ── */
.t-btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  border: 2px solid #19817F;
  color: #19817F;
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  background: transparent;
  transition: background .25s, color .25s, border-color .25s;
  text-decoration: none;
}
.t-btn-outline:hover {
  background: linear-gradient(90deg, #19817F, #4888F1);
  color: #fff;
  border-color: transparent;
}

/* HERO CAROUSEL */
/* ABOVE-FOLD BLOCK — hero carousel + stats together fill the viewport */
#t-above-fold {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 69px); /* 69px = nav height (36px logo + 32px padding + 1px border) */
}
@media (max-width: 768px) { #t-above-fold { height: auto; } }

#t-hero {
  position: relative;
  z-index: 10;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}
@media (max-width: 768px) { #t-hero { height: 420px; flex: none; } }

.t-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.t-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.t-slide img { width: 100%; height: 100%; object-fit: cover; }

.t-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,14,26,.95) 0%, rgba(10,14,26,.65) 55%, transparent 100%);
}
.t-slide-scanline {
  position: absolute; inset: 0; opacity: .08;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(25,129,127,.4) 2px, rgba(25,129,127,.4) 4px
  );
  pointer-events: none;
}
.t-slide-content {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 48px; max-width: 640px;
}
@media (max-width: 768px) {
  .t-slide-content { left: 20px; max-width: calc(100% - 40px); }
}
.t-slide-badge {
  display: inline-block;
  padding: 6px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  background: linear-gradient(90deg, #19817F, #4888F1);
  color: #fff;
  margin-bottom: 20px;
}
.t-slide-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 28px;
  background: linear-gradient(90deg, #fff, #19817F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.t-slide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 8px; border: none; cursor: pointer;
  background: #fff; color: #111;
  font-weight: 700; font-family: inherit; font-size: 1rem;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.t-slide-cta:hover { background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; }

/* Carousel controls */
.t-carousel-controls {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px; z-index: 20;
}
.t-carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1; transition: background .2s;
}
.t-carousel-btn:hover { background: rgba(255,255,255,0.22); }
.t-carousel-dots { display: flex; gap: 8px; }
.t-dot {
  height: 8px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.3);
  transition: width .3s, background .3s;
  width: 8px; padding: 0;
}
.t-dot.active {
  width: 32px;
  background: linear-gradient(90deg, #19817F, #4888F1);
}

/* STATS */
#t-stats { position: relative; z-index: 10; padding: 16px 48px 20px; flex-shrink: 0; }
@media (max-width: 768px) { #t-stats { padding: 16px 20px 32px; flex: none; } }
.t-stats-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 40px;
  background: linear-gradient(135deg, rgba(25,129,127,0.12), rgba(72,136,241,0.12));
  backdrop-filter: blur(20px);
  overflow: visible;
}
.t-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto; text-align: center;
  align-items: center;
}
@media (max-width: 900px)  { .t-stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px 16px; } }
@media (max-width: 480px)  { .t-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px 8px; } }
.trive-stat-value {
  font-size: clamp(1.4rem, 3vw, 2.6rem); font-weight: 800;
  background: linear-gradient(90deg, #fff, #19817F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
  white-space: nowrap;
  line-height: 1.1;
}
.t-stat-label { color: #9CA3AF; font-weight: 500; font-size: .85rem; line-height: 1.4; }

/* STRATEGIES — cards */
.t-cards-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1024px) { .t-cards-3 { grid-template-columns: 1fr; } }

.t-strategy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px; padding: 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 24px;
}
.t-strategy-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity .4s; pointer-events: none;
}
.t-strategy-card.c-teal::before  { background: linear-gradient(135deg, rgba(25,129,127,0.10), transparent); }
.t-strategy-card.c-blue::before  { background: linear-gradient(135deg, rgba(72,136,241,0.10), transparent); }
.t-strategy-card.c-olive::before { background: linear-gradient(135deg, rgba(108,142,47,0.10), transparent); }
.t-strategy-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.t-strategy-card:hover::before { opacity: 1; }

.t-strategy-logo { height: 32px; width: auto; max-width: 200px; display: block; object-fit: contain; object-position: left center; }
.t-strategy-desc { color: #D1D5DB; font-size: .92rem; line-height: 1.7; }

.t-strategy-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.t-strategy-stat {
  border-radius: 10px; padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.t-strategy-stat-label {
  font-size: .68rem; color: #9CA3AF; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px;
}
.t-strategy-stat-value { font-size: .92rem; font-weight: 800; color: #fff; }

.t-strategy-sectors { display: flex; flex-wrap: wrap; gap: 7px; }
.t-strategy-sectors-title { font-size: .8rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.t-strategy-sector {
  padding: 5px 13px; border-radius: 8px;
  font-size: .75rem; font-weight: 600; border: 1px solid; letter-spacing: .02em;
}
.c-teal .t-strategy-sector  { color: #19817F; border-color: rgba(25,129,127,0.35); background: rgba(25,129,127,0.08); }
.c-blue .t-strategy-sector  { color: #4888F1; border-color: rgba(72,136,241,0.35); background: rgba(72,136,241,0.08); }
.c-olive .t-strategy-sector { color: #6C8E2F; border-color: rgba(108,142,47,0.35); background: rgba(108,142,47,0.08); }

/* PORTFOLIO — cards */
.t-cards-3-sm {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1024px) { .t-cards-3-sm { grid-template-columns: 1fr; } }

.t-portfolio-card {
  position: relative;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.t-portfolio-card:hover { transform: translateY(-12px); box-shadow: 0 28px 60px rgba(0,0,0,0.4); }

.t-portfolio-glow {
  position: absolute; inset: 0; border-radius: 18px;
  opacity: 0; transition: opacity .4s; pointer-events: none;
  z-index: 0; filter: blur(24px);
}
.t-portfolio-card:hover .t-portfolio-glow { opacity: 1; }

.t-portfolio-img {
  position: relative; height: 180px; overflow: hidden;
}
.t-portfolio-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.t-portfolio-card:hover .t-portfolio-img img { transform: scale(1.09); }
.t-portfolio-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,26,0) 30%, rgba(10,14,26,0.75) 100%);
  pointer-events: none;
}
.t-portfolio-scanline {
  position: absolute; inset: 0; opacity: .08; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(25,129,127,.35) 2px, rgba(25,129,127,.35) 4px);
}

.t-portfolio-body { position: relative; z-index: 1; padding: 18px 20px 20px; }
.t-portfolio-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 5px; gap: 8px; }
.t-portfolio-name { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.3; }
.t-portfolio-ext {
  flex-shrink: 0; opacity: .4; transition: opacity .2s, transform .2s;
  display: flex; align-items: center; margin-top: 2px;
}
.t-portfolio-card:hover .t-portfolio-ext { opacity: 1; transform: rotate(30deg) scale(1.1); }
.t-portfolio-ext svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t-portfolio-category { font-size: .78rem; font-weight: 700; margin-bottom: 9px; letter-spacing: .02em; }
.t-portfolio-desc { font-size: .82rem; color: #D1D5DB; line-height: 1.6; margin-bottom: 0; }

/* TEAM */
.t-cards-4 {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .t-cards-4 { grid-template-columns: repeat(2,1fr); } }
.t-team-card { text-align: center; cursor: pointer; transition: transform .3s; text-decoration: none; display: block; color: inherit; }
.t-team-card:hover { transform: translateY(-12px); }
.t-team-photo {
  aspect-ratio: 1; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px;
}
.t-team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.t-team-card:hover .t-team-photo img { transform: scale(1.08); }
.t-team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.t-team-card p { color: #9CA3AF; font-size: .88rem; }

/* VALUES */
.t-values-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 1024px) { .t-values-grid { grid-template-columns: 1fr 1fr; gap: 2px; } }
@media (max-width: 500px)  { .t-values-grid { grid-template-columns: 1fr; } }

.t-value-tile {
  padding: 36px 28px 40px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  cursor: default;
  transition: background .35s;
}
.t-value-tile:first-child { border-radius: 20px 0 0 20px; }
.t-value-tile:last-child  { border-radius: 0 20px 20px 0; }
@media (max-width: 1024px) {
  .t-value-tile:first-child  { border-radius: 20px 20px 0 0; }
  .t-value-tile:last-child   { border-radius: 0 0 20px 20px; }
  .t-value-tile:nth-child(2) { border-radius: 0 20px 0 0; }
  .t-value-tile:nth-child(3) { border-radius: 0 0 0 20px; }
}
.t-value-tile:hover { background: rgba(255,255,255,0.04); }
.t-value-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; opacity: 0; transition: opacity .35s;
}
.t-value-tile:hover::before { opacity: 1; }
.t-value-tile.vt-trust::before    { background: linear-gradient(90deg, #19817F, #4888F1); }
.t-value-tile.vt-respect::before  { background: linear-gradient(90deg, #4888F1, #19817F); }
.t-value-tile.vt-innov::before    { background: linear-gradient(90deg, #19817F, #6C8E2F); }
.t-value-tile.vt-valid::before    { background: linear-gradient(90deg, #4888F1, #19817F); }
.t-value-tile.vt-enjoy::before    { background: linear-gradient(90deg, #6C8E2F, #19817F); }

.t-value-bg-letter {
  position: absolute; bottom: -10px; right: 10px;
  font-size: 7rem; font-weight: 900; line-height: 1;
  opacity: .04; pointer-events: none;
  transition: opacity .35s, transform .5s;
  color: #fff; letter-spacing: -.05em;
  user-select: none;
}
.t-value-tile:hover .t-value-bg-letter { opacity: .09; transform: scale(1.08) translateY(-4px); }

.t-value-num {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,0.2); text-transform: uppercase;
  margin-bottom: 28px;
}
.t-value-name {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; margin-bottom: 12px; line-height: 1.2;
  transition: color .3s;
}
.t-value-tile.vt-trust:hover  .t-value-name { color: #19817F; }
.t-value-tile.vt-respect:hover .t-value-name { color: #4888F1; }
.t-value-tile.vt-innov:hover  .t-value-name { color: #19817F; }
.t-value-tile.vt-valid:hover  .t-value-name { color: #4888F1; }
.t-value-tile.vt-enjoy:hover  .t-value-name { color: #6C8E2F; }
.t-value-desc { font-size: .83rem; color: #9CA3AF; line-height: 1.65; }


/* === PAGE: about === */

#trive-about {
  font-family: var(--trive-font, 'Montserrat', sans-serif);
  color: #fff;
  position: relative; z-index: 1;
  background: transparent;
}

.ab-hero {
  padding: 96px 48px 60px;
  text-align: center;
  position: relative; z-index: 10;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .ab-hero { padding: 60px 24px 40px; } }

.ab-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 18px; border-radius: 999px; margin-bottom: 24px;
  font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(25,129,127,0.12); border: 1px solid rgba(25,129,127,0.3); color: #19817F;
}
.ab-hero-kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: #19817F; }

.ab-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 28px;
  background: linear-gradient(100deg, #fff 0%, #fff 40%, #19817F 75%, #4888F1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.ab-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: #D1D5DB; line-height: 1.85;
  max-width: 780px; margin: 0 auto 40px;
}

.ab-hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-width: 680px; margin: 0 auto;
}
.ab-hero-stat {
  flex: 1; min-width: 140px;
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ab-hero-stat:last-child { border-right: none; }
.ab-hero-stat-val {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; line-height: 1;
  background: linear-gradient(90deg, #fff, #19817F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.ab-hero-stat-label { font-size: .72rem; color: #9CA3AF; font-weight: 600; letter-spacing: .04em; }

.ab-section {
  padding: 0 48px 72px;
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .ab-section { padding: 0 24px 52px; } }

.ab-section-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.ab-section-label span {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #19817F; white-space: nowrap;
}
.ab-section-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07);
}

.ab-identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .ab-identity-grid { grid-template-columns: 1fr; gap: 32px; } }

.ab-identity-headline {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.2; color: #fff;
  position: sticky; top: 100px;
}
@media (max-width: 900px) { .ab-identity-headline { position: static; } }

.ab-identity-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #19817F, #4888F1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ab-identity-body { font-size: .92rem; color: #D1D5DB; line-height: 1.85; }

.ab-heritage {
  border-radius: 24px;
  border: 1px solid rgba(25,129,127,0.22);
  background: rgba(25,129,127,0.05);
  backdrop-filter: blur(14px);
  padding: 52px 56px;
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .ab-heritage { padding: 36px 28px; } }
.ab-heritage::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #19817F, #4888F1);
}
.ab-heritage-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px; align-items: start;
}
@media (max-width: 960px) { .ab-heritage-inner { grid-template-columns: 1fr; gap: 36px; } }
.ab-heritage h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.25;
}
.ab-heritage p { font-size: .9rem; color: #D1D5DB; line-height: 1.85; margin-bottom: 16px; }
.ab-heritage p:last-child { margin-bottom: 0; }

.ab-alpha-quote {
  padding: 28px 32px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  position: relative;
}
.ab-alpha-quote::before {
  content: '"';
  position: absolute; top: -10px; left: 20px;
  font-size: 5rem; line-height: 1; color: #19817F; opacity: .25;
  font-family: Georgia, serif; pointer-events: none;
}
.ab-alpha-num {
  font-size: 2.8rem; font-weight: 800; line-height: 1;
  background: linear-gradient(90deg, #19817F, #4888F1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.ab-alpha-label { font-size: .72rem; color: #9CA3AF; font-weight: 600; letter-spacing: .06em; margin-bottom: 16px; }
.ab-alpha-text { font-size: .82rem; color: #D1D5DB; line-height: 1.7; }
.ab-alpha-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 14px 0; }
.ab-alpha-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  background: rgba(25,129,127,0.14); border: 1px solid rgba(25,129,127,0.3); color: #19817F;
  margin-top: 6px;
}

.ab-method-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 768px) { .ab-method-grid { grid-template-columns: 1fr; } }

.ab-method-card {
  border-radius: 18px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); padding: 28px 30px;
  position: relative; overflow: hidden;
  transition: border-color .25s, background .25s;
}
.ab-method-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(25,129,127,0.25); }
.ab-method-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #19817F, #4888F1);
  opacity: 0; transition: opacity .25s;
}
.ab-method-card:hover::before { opacity: 1; }
.ab-method-icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(25,129,127,0.15); color: #19817F;
}
.ab-method-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ab-method-title { font-size: .92rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.ab-method-desc  { font-size: .82rem; color: #9CA3AF; line-height: 1.7; }

.ab-method-highlight {
  border-radius: 18px; border: 1px solid rgba(72,136,241,0.2);
  background: rgba(72,136,241,0.05); padding: 32px 36px;
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.ab-method-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #4888F1, #19817F);
}
.ab-method-highlight-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #4888F1; margin-bottom: 8px;
}
.ab-method-highlight p { font-size: .9rem; color: #D1D5DB; line-height: 1.8; margin: 0; }

.ab-evolution-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 48px; align-items: start;
}
@media (max-width: 900px) { .ab-evolution-inner { grid-template-columns: 1fr; gap: 28px; } }
.ab-evolution-body p { font-size: .9rem; color: #D1D5DB; line-height: 1.85; margin-bottom: 16px; }
.ab-evolution-body p:last-child { margin-bottom: 0; }
.ab-evolution-body strong { color: #fff; font-weight: 700; }
.ab-evolution-aside {
  display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px;
}
@media (max-width: 900px) { .ab-evolution-aside { position: static; flex-direction: row; flex-wrap: wrap; } }
.ab-evo-stat {
  border-radius: 14px; padding: 20px 22px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); text-align: center;
}
.ab-evo-stat-val {
  font-size: 1.8rem; font-weight: 800; line-height: 1;
  background: linear-gradient(90deg, #fff, #19817F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.ab-evo-stat-label { font-size: .73rem; color: #9CA3AF; font-weight: 600; line-height: 1.4; }

.ab-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .ab-dual { grid-template-columns: 1fr; } }
.ab-dual-card {
  border-radius: 20px; padding: 36px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ab-dual-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.35); }
.ab-dual-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; opacity: 0; transition: opacity .3s;
}
.ab-dual-card:hover::before { opacity: 1; }
.ab-dual-card--founders::before { background: linear-gradient(90deg, #19817F, #4888F1); }
.ab-dual-card--lps::before { background: linear-gradient(90deg, #4888F1, #6C8E2F); }
.ab-dual-card--founders:hover { border-color: rgba(25,129,127,0.3); }
.ab-dual-card--lps:hover       { border-color: rgba(72,136,241,0.3); }
.ab-dual-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.ab-dual-card--founders .ab-dual-icon { background: rgba(25,129,127,0.18); color: #19817F; }
.ab-dual-card--lps .ab-dual-icon       { background: rgba(72,136,241,0.18); color: #4888F1; }
.ab-dual-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ab-dual-for { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.ab-dual-card--founders .ab-dual-for { color: #19817F; }
.ab-dual-card--lps .ab-dual-for       { color: #4888F1; }
.ab-dual-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.ab-dual-card p  { font-size: .85rem; color: #D1D5DB; line-height: 1.75; margin: 0; }

.ab-values-strip {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px 72px; position: relative; z-index: 10;
}
@media (max-width: 768px) { .ab-values-strip { padding: 0 24px 52px; } }
.ab-values-head { text-align: center; margin-bottom: 36px; }
.ab-values-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.ab-values-head p { color: #9CA3AF; font-size: .9rem; }
.ab-values-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
@media (max-width: 1024px) { .ab-values-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .ab-values-tiles { grid-template-columns: 1fr; } }
.ab-val {
  padding: 36px 24px 40px; border: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden; transition: background .35s; cursor: default;
}
.ab-val:first-child { border-radius: 20px 0 0 20px; }
.ab-val:last-child  { border-radius: 0 20px 20px 0; }
@media (max-width: 1024px) {
  .ab-val:first-child { border-radius: 20px 20px 0 0; }
  .ab-val:last-child  { border-radius: 0 0 20px 20px; }
}
.ab-val:hover { background: rgba(255,255,255,0.04); }
.ab-val::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; opacity: 0; transition: opacity .35s; }
.ab-val:hover::before { opacity: 1; }
.ab-val-t::before { background: linear-gradient(90deg, #19817F, #4888F1); }
.ab-val-r::before { background: linear-gradient(90deg, #4888F1, #19817F); }
.ab-val-i::before { background: linear-gradient(90deg, #19817F, #6C8E2F); }
.ab-val-v::before { background: linear-gradient(90deg, #4888F1, #19817F); }
.ab-val-e::before { background: linear-gradient(90deg, #6C8E2F, #19817F); }
.ab-val-bg {
  position: absolute; bottom: -10px; right: 10px;
  font-size: 7rem; font-weight: 900; line-height: 1;
  opacity: .04; pointer-events: none; transition: opacity .35s, transform .5s; color: #fff; user-select: none;
}
.ab-val:hover .ab-val-bg { opacity: .09; transform: scale(1.08) translateY(-4px); }
.ab-val-num { font-size: .66rem; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,0.2); text-transform: uppercase; margin-bottom: 28px; }
.ab-val-name { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; transition: color .3s; }
.ab-val-t:hover .ab-val-name { color: #19817F; }
.ab-val-r:hover .ab-val-name { color: #4888F1; }
.ab-val-i:hover .ab-val-name { color: #19817F; }
.ab-val-v:hover .ab-val-name { color: #4888F1; }
.ab-val-e:hover .ab-val-name { color: #6C8E2F; }
.ab-val-desc { font-size: .8rem; color: #9CA3AF; line-height: 1.65; }


/* === PAGE: team === */

#trive-team {
  font-family: var(--trive-font, 'Montserrat', sans-serif);
  color: #fff;
  position: relative; z-index: 1;
  background: transparent;
}

.tt-hero {
  padding: 80px 48px 40px;
  text-align: center; position: relative; z-index: 10;
}
@media (max-width: 768px) { .tt-hero { padding: 48px 20px 24px; } }
.tt-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px;
  background: linear-gradient(90deg, #fff 0%, #19817F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tt-hero p { color: #D1D5DB; font-size: clamp(1rem, 2vw, 1.2rem); max-width: 640px; margin: 0 auto; line-height: 1.7; }

.tt-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
  padding: 40px 48px 80px; position: relative; z-index: 10;
}
@media (max-width: 900px) { .tt-grid { grid-template-columns: 1fr; padding: 24px 20px 48px; gap: 20px; } }

.t-member {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: default;
}
.t-member:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(25,129,127,0.18); }
.t-member::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(25,129,127,0.15), rgba(72,136,241,0.15));
  opacity: 0; transition: opacity .4s; z-index: 0; pointer-events: none;
}
.t-member:hover::before { opacity: 1; }

.t-member-photo { position: relative; height: 400px; overflow: hidden; }
@media (max-width: 600px) { .t-member-photo { height: 300px; } }
.t-member-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .5s ease; display: block;
}
.t-member:hover .t-member-photo img { transform: scale(1.07); }
.t-member-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, #0A0E1A 100%);
  pointer-events: none;
}
.t-member-photo-scanline {
  position: absolute; inset: 0; opacity: 0.07;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(25,129,127,0.4) 2px, rgba(25,129,127,0.4) 4px);
  pointer-events: none; z-index: 1;
}

.t-member-body { position: relative; z-index: 1; padding: 24px 28px 28px; }
.t-member-name { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.t-member-role { font-size: .9rem; font-weight: 600; color: #19817F; margin-bottom: 14px; letter-spacing: .03em; }
.t-member-bio { font-size: .88rem; color: #D1D5DB; line-height: 1.75; margin-bottom: 20px; }

.t-member-links { display: flex; gap: 10px; }
.t-member-link {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .25s, transform .2s, border-color .25s; flex-shrink: 0;
}
.t-member-link:hover { transform: scale(1.12) rotate(4deg); }
.t-member-link.t-linkedin:hover { background: rgba(25,129,127,0.25); border-color: rgba(25,129,127,0.4); }
.t-member-link.t-email:hover   { background: rgba(108,142,47,0.25); border-color: rgba(108,142,47,0.4); }
.t-member-link svg { width: 18px; height: 18px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t-linkedin svg { stroke: #19817F; }
.t-email svg   { stroke: #6C8E2F; }

.tt-cta { padding: 0 48px 80px; position: relative; z-index: 10; }
@media (max-width: 768px) { .tt-cta { padding: 0 20px 48px; } }
.tt-cta-card {
  max-width: 860px; margin: 0 auto; text-align: center;
  border: 1px solid rgba(255,255,255,0.10); border-radius: 28px; padding: 64px 48px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(20px);
}
@media (max-width: 600px) { .tt-cta-card { padding: 40px 24px; } }
.tt-cta-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; color: #fff; }
.tt-cta-card p { color: #9CA3AF; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.tt-cta-btn {
  display: inline-block; padding: 14px 36px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; font-weight: 700;
  font-family: inherit; font-size: 1rem; text-decoration: none; transition: opacity .25s, transform .2s;
}
.tt-cta-btn:hover { opacity: .85; transform: scale(1.04); }


/* === PAGE: strategies === */

#trive-strategies-b {
  font-family: var(--trive-font, 'Montserrat', sans-serif);
  color: #fff; position: relative; z-index: 1; background: transparent;
}

.sb-hero {
  padding: 88px 48px 64px; text-align: center; position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .sb-hero { padding: 56px 24px 40px; } }
.sb-hero-kicker {
  display: inline-block; padding: 5px 16px; border-radius: 999px; margin-bottom: 22px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(25,129,127,0.14); border: 1px solid rgba(25,129,127,0.35); color: #19817F;
}
.sb-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; margin-bottom: 22px;
  background: linear-gradient(90deg, #fff 0%, #19817F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sb-hero-intro { color: #D1D5DB; font-size: clamp(.95rem, 1.6vw, 1.1rem); max-width: 760px; margin: 0 auto; line-height: 1.85; }

.sb-section { padding: 0 48px 56px; position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; }
@media (max-width: 768px) { .sb-section { padding: 0 20px 40px; } }
.sb-section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.sb-section-label-text { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.sb-section-label-text.cl-teal { color: #19817F; }
.sb-section-label-text.cl-blue { color: #4888F1; }
.sb-section-label-text.cl-olive { color: #6C8E2F; }
.sb-section-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

.sb-block {
  border-radius: 26px; border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  overflow: hidden; position: relative;
}
.sb-block.bv-teal  { border-left: 3px solid #19817F; }
.sb-block.bv-blue  { border-left: 3px solid #4888F1; }
.sb-block.bv-olive { border-left: 3px solid #6C8E2F; }

.sb-split { display: grid; grid-template-columns: 320px 1fr; min-height: 0; }
@media (max-width: 960px) { .sb-split { grid-template-columns: 1fr; } }

.sb-identity {
  padding: 48px 36px; border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 28px; position: relative;
}
@media (max-width: 960px) { .sb-identity { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 36px 28px; } }

.sb-identity-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; filter: blur(60px); opacity: .12; }
.bv-teal .sb-identity-glow  { background: radial-gradient(ellipse at 30% 50%, #19817F, transparent 70%); }
.bv-blue .sb-identity-glow  { background: radial-gradient(ellipse at 30% 50%, #4888F1, transparent 70%); }
.bv-olive .sb-identity-glow { background: radial-gradient(ellipse at 30% 50%, #6C8E2F, transparent 70%); }

.sb-logo { height: 30px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; display: block; position: relative; z-index: 1; }
.sb-tagline { font-size: .8rem; color: #9CA3AF; line-height: 1.65; position: relative; z-index: 1; }
.sb-stats { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.sb-stat { border-radius: 10px; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.sb-stat-label { font-size: .66rem; color: #9CA3AF; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 4px; }
.sb-stat-value { font-size: .9rem; font-weight: 800; color: #fff; }
.sb-sectors { display: flex; flex-wrap: wrap; gap: 7px; position: relative; z-index: 1; }
.sb-sector { padding: 5px 12px; border-radius: 7px; font-size: .74rem; font-weight: 600; border: 1px solid; letter-spacing: .02em; }
.bv-teal  .sb-sector { color: #19817F; border-color: rgba(25,129,127,0.35); background: rgba(25,129,127,0.08); }
.bv-blue  .sb-sector { color: #4888F1; border-color: rgba(72,136,241,0.35); background: rgba(72,136,241,0.08); }
.bv-olive .sb-sector { color: #6C8E2F; border-color: rgba(108,142,47,0.35); background: rgba(108,142,47,0.08); }
.sb-stay-tuned {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  background: rgba(108,142,47,0.12); border: 1px solid rgba(108,142,47,0.35); color: #6C8E2F;
  position: relative; z-index: 1;
}
.sb-dot { width: 7px; height: 7px; border-radius: 50%; background: #6C8E2F; flex-shrink: 0; }

.sb-content { padding: 48px 52px; display: flex; flex-direction: column; gap: 32px; }
@media (max-width: 960px) { .sb-content { padding: 36px 28px; } }
.sb-thesis-kicker { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.bv-teal .sb-thesis-kicker  { color: #19817F; }
.bv-blue .sb-thesis-kicker  { color: #4888F1; }
.sb-thesis-headline { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 14px; }
.sb-thesis-body { font-size: .88rem; color: #D1D5DB; line-height: 1.82; }

.sb-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .sb-points { grid-template-columns: 1fr; } }
.sb-point { border-radius: 14px; padding: 18px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); transition: border-color .25s, background .25s; }
.sb-point:hover { background: rgba(255,255,255,0.07); }
.bv-teal .sb-point:hover  { border-color: rgba(25,129,127,0.3); }
.bv-blue .sb-point:hover  { border-color: rgba(72,136,241,0.3); }
.sb-point-icon { width: 30px; height: 30px; border-radius: 8px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.bv-teal .sb-point-icon { background: rgba(25,129,127,0.18); color: #19817F; }
.bv-blue .sb-point-icon { background: rgba(72,136,241,0.18); color: #4888F1; }
.sb-point-icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.sb-point-title { font-size: .84rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.sb-point-desc  { font-size: .78rem; color: #9CA3AF; line-height: 1.65; }

.sb-investor-note { padding: 18px 22px; border-radius: 13px; background: rgba(25,129,127,0.08); border: 1px solid rgba(25,129,127,0.22); }
.sb-note-label { font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #19817F; margin-bottom: 6px; }
.sb-note-label.cl-blue { color: #4888F1; }
.sb-investor-note p, .sb-why-note p { font-size: .82rem; color: #D1D5DB; line-height: 1.7; margin: 0; }

.sb-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .sb-pillars { grid-template-columns: 1fr; } }
.sb-pillar { border-radius: 14px; padding: 20px; background: rgba(72,136,241,0.07); border: 1px solid rgba(72,136,241,0.18); transition: background .25s, border-color .25s; }
.sb-pillar:hover { background: rgba(72,136,241,0.12); border-color: rgba(72,136,241,0.3); }
.sb-pillar-num { font-size: .72rem; font-weight: 800; color: #4888F1; letter-spacing: .06em; margin-bottom: 8px; }
.sb-pillar-title { font-size: .84rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.sb-pillar-desc  { font-size: .77rem; color: #9CA3AF; line-height: 1.6; }
.sb-why-note { padding: 18px 22px; border-radius: 13px; background: rgba(72,136,241,0.08); border: 1px solid rgba(72,136,241,0.22); }

.sb-cta-wrap { padding: 0 48px 60px; position: relative; z-index: 10; }
@media (max-width: 768px) { .sb-cta-wrap { padding: 0 20px 48px; } }
.sb-cta-block {
  max-width: 1280px; margin: 0 auto; border-radius: 26px;
  background: linear-gradient(135deg, rgba(25,129,127,0.10), rgba(72,136,241,0.08));
  border: 1px solid rgba(255,255,255,0.09); padding: 56px 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
@media (max-width: 768px) { .sb-cta-block { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; } }
.sb-cta-kicker { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #19817F; margin-bottom: 12px; }
.sb-cta-block h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.25; }
.sb-cta-block p { color: #9CA3AF; font-size: .88rem; line-height: 1.7; margin: 0; }
.sb-cta-email {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 12px;
  background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; font-weight: 700;
  font-family: inherit; font-size: .9rem; text-decoration: none; white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.sb-cta-email:hover { opacity: .88; transform: scale(1.03); }
.sb-cta-email svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.sb-wa-wrap { padding: 0 48px 80px; position: relative; z-index: 10; }
@media (max-width: 768px) { .sb-wa-wrap { padding: 0 20px 56px; } }
.sb-wa-card {
  max-width: 1280px; margin: 0 auto; border: 1px solid rgba(37,211,102,0.25);
  border-radius: 24px; padding: 48px; background: rgba(37,211,102,0.05);
  backdrop-filter: blur(14px); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
@media (max-width: 700px) { .sb-wa-card { grid-template-columns: 1fr; padding: 32px 24px; } }
.sb-wa-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(37,211,102,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.sb-wa-icon svg { width: 22px; height: 22px; stroke: #25D366; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sb-wa-card h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.sb-wa-card p  { color: #D1D5DB; font-size: .88rem; line-height: 1.7; margin-bottom: 6px; }
.sb-wa-card small { color: #6B7280; font-size: .76rem; font-style: italic; }
.sb-wa-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 10px;
  background: #25D366; color: #fff; font-weight: 700; font-family: inherit; font-size: .9rem;
  text-decoration: none; white-space: nowrap; transition: opacity .2s, transform .2s;
}
.sb-wa-btn:hover { opacity: .88; transform: scale(1.04); }
.sb-wa-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


/* === PAGE: portfolio === */

#trive-portfolio {
  font-family: var(--trive-font, 'Montserrat', sans-serif);
  color: #fff; position: relative; z-index: 1; background: transparent;
}

.pp-hero { padding: 80px 48px 40px; text-align: center; position: relative; z-index: 10; }
@media (max-width: 768px) { .pp-hero { padding: 48px 20px 28px; } }
.pp-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px;
  background: linear-gradient(90deg, #fff 0%, #19817F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pp-hero p { color: #D1D5DB; font-size: clamp(1rem, 2vw, 1.1rem); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.pp-controls { position: relative; z-index: 10; padding: 0 48px 36px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .pp-controls { padding: 0 20px 24px; } }

.pp-search-wrap { position: relative; max-width: 520px; margin: 0 auto 24px; }
.pp-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: #6B7280; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
#pp-search {
  width: 100%; padding: 13px 20px 13px 46px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px); color: #fff; font-family: inherit; font-size: .95rem;
  outline: none; transition: border-color .2s, background .2s;
}
#pp-search::placeholder { color: #6B7280; }
#pp-search:focus { border-color: rgba(25,129,127,0.5); background: rgba(255,255,255,0.08); }

.pp-filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 10px; }
.pp-filter-row:last-child { margin-bottom: 0; }
.pp-filter-label { width: 100%; text-align: center; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.pp-filter-btn {
  padding: 7px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); color: #D1D5DB; font-family: inherit;
  font-size: .83rem; font-weight: 600; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(8px); white-space: nowrap;
}
.pp-filter-btn:hover { background: rgba(255,255,255,0.1); transform: scale(1.03); }
.pp-filter-btn.active { border-color: transparent; color: #fff; }
.pp-fund-btn.active { background: linear-gradient(90deg, #19817F, #4888F1); }
.pp-industry-btn.active { background: linear-gradient(135deg, #4888F1, #19817F); }
.pp-filter-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }

.pp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1200px; margin: 0 auto; padding: 0 48px 60px; position: relative; z-index: 10;
}
@media (max-width: 1100px) { .pp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .pp-grid { grid-template-columns: 1fr; padding: 0 20px 48px; } }

.pp-section-label {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 14px;
  padding: 10px 0 4px; font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
}
.pp-section-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

.p-card {
  position: relative; border-radius: 16px; border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .3s ease, box-shadow .3s ease; overflow: hidden;
}
#page-portfolio .p-card.trive-reveal { opacity: 1; transform: none; }
.p-card.hidden { display: none; }
.p-card:not(.p-card--exited):hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.p-card:not(.p-card--exited)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #19817F, #4888F1); opacity: 0; transition: opacity .3s;
}
.p-card:not(.p-card--exited):hover::before { opacity: 1; }
.p-card--exited { border-color: rgba(25,129,127,0.28); background: rgba(25,129,127,0.06); }
.p-card--exited::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #19817F, #6C8E2F); opacity: 1; }
.p-card--exited:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(25,129,127,0.2); }

.p-card-status-badge { position: absolute; top: 13px; right: 13px; padding: 3px 11px; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; z-index: 5; }
.p-card-status-badge--exited { background: rgba(25,129,127,0.18); border: 1px solid rgba(25,129,127,0.38); color: #19817F; }

.p-card-body { padding: 20px 20px 18px; position: relative; z-index: 1; }
.p-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.p-card-name { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.3; }
.p-card-link { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; opacity: .38; transition: opacity .2s, transform .2s; margin-top: 2px; }
.p-card-link:hover { opacity: 1; transform: rotate(25deg) scale(1.15); }
.p-card-link svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.p-card-industry { font-size: .77rem; font-weight: 700; color: #19817F; margin-bottom: 9px; letter-spacing: .02em; }
.p-card[data-fund="digital"] .p-card-industry { color: #4888F1; }
.p-card-desc { font-size: .83rem; color: #D1D5DB; line-height: 1.65; margin-bottom: 0; }
.p-card-fund-badge { display: inline-flex; align-items: center; margin-top: 13px; padding: 3px 10px; border-radius: 6px; font-size: .65rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.p-card[data-fund="ventures"] .p-card-fund-badge { background: rgba(25,129,127,0.1); border: 1px solid rgba(25,129,127,0.18); color: #19817F; }
.p-card[data-fund="digital"] .p-card-fund-badge { background: rgba(72,136,241,0.1); border: 1px solid rgba(72,136,241,0.18); color: #4888F1; }

.pp-no-results { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: #6B7280; font-size: 1rem; display: none; }
.pp-no-results.visible { display: block; }

.pp-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 48px 80px; position: relative; z-index: 10; }
@media (max-width: 900px) { .pp-bottom-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .pp-bottom-row { padding: 0 20px 48px; } }
.pp-cta-card { text-align: center; border: 1px solid rgba(255,255,255,0.10); border-radius: 28px; padding: 56px 40px; background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 600px) { .pp-cta-card { padding: 40px 24px; } }
.pp-cta-card h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 14px; color: #fff; }
.pp-cta-card p { color: #9CA3AF; margin-bottom: 32px; line-height: 1.7; }
.pp-newsletter-card .trive-newsletter-form { max-width: none; margin: 0; }
.pp-cta-btn { display: inline-block; padding: 14px 36px; border-radius: 10px; border: none; cursor: pointer; background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; font-weight: 700; font-family: inherit; font-size: 1rem; text-decoration: none; transition: opacity .25s, transform .2s; }
.pp-cta-btn:hover { opacity: .85; transform: scale(1.04); }


/* === PAGE: contact === */

#trive-contact {
  font-family: var(--trive-font, 'Montserrat', sans-serif);
  color: #fff; position: relative; z-index: 1; background: transparent;
}

.cp-hero { padding: 80px 48px 56px; text-align: center; position: relative; z-index: 10; }
@media (max-width: 768px) { .cp-hero { padding: 48px 20px 36px; } }
.cp-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px;
  background: linear-gradient(90deg, #fff 0%, #19817F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cp-hero p { color: #D1D5DB; font-size: clamp(1rem, 2vw, 1.15rem); max-width: 600px; margin: 0 auto; line-height: 1.75; }

.cp-tabs-wrap { position: relative; z-index: 10; padding: 0 48px 32px; }
@media (max-width: 768px) { .cp-tabs-wrap { padding: 0 20px 24px; } }
.cp-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; max-width: 860px; margin: 0 auto; }
.cp-tab {
  padding: 11px 26px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05); color: #D1D5DB; font-family: inherit; font-size: .92rem;
  font-weight: 600; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(8px); white-space: nowrap;
}
.cp-tab:hover { transform: scale(1.04); background: rgba(255,255,255,0.09); }
.cp-tab.active-pitch  { background: #19817F; border-color: #19817F; color: #fff; }
.cp-tab.active-invest { background: #4888F1; border-color: #4888F1; color: #fff; }
.cp-tab.active-general{ background: #6C8E2F; border-color: #6C8E2F; color: #fff; }

.cp-form-wrap { position: relative; z-index: 10; padding: 0 48px 80px; }
@media (max-width: 768px) { .cp-form-wrap { padding: 0 20px 48px; } }
.cp-form-card {
  max-width: 860px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px; padding: 48px; background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); position: relative; overflow: hidden;
}
@media (max-width: 600px) { .cp-form-card { padding: 32px 24px; } }
.cp-form-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none; border-radius: 22px;
}
.cp-form-card h2 { font-size: 1.55rem; font-weight: 800; margin-bottom: 32px; color: #fff; }

.cp-form-panel { display: none; }
.cp-form-panel.active { display: block; }

.cp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 640px) { .cp-row { grid-template-columns: 1fr; } }
.cp-field { margin-bottom: 20px; }
.cp-field:last-child { margin-bottom: 0; }
.cp-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 8px; color: #E5E7EB; letter-spacing: .02em; }
.cp-input, .cp-select, .cp-textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  color: #fff; font-family: inherit; font-size: .92rem; outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  backdrop-filter: blur(8px); -webkit-appearance: none; appearance: none; box-sizing: border-box;
}
.cp-input::placeholder, .cp-textarea::placeholder { color: #6B7280; }
.form-pitch   .cp-input:focus, .form-pitch   .cp-select:focus, .form-pitch   .cp-textarea:focus { border-color: #19817F; box-shadow: 0 0 0 3px rgba(25,129,127,0.18); background: rgba(25,129,127,0.06); }
.form-invest  .cp-input:focus, .form-invest  .cp-select:focus, .form-invest  .cp-textarea:focus { border-color: #4888F1; box-shadow: 0 0 0 3px rgba(72,136,241,0.18); background: rgba(72,136,241,0.06); }
.form-general .cp-input:focus, .form-general .cp-select:focus, .form-general .cp-textarea:focus { border-color: #6C8E2F; box-shadow: 0 0 0 3px rgba(108,142,47,0.18); background: rgba(108,142,47,0.06); }

.cp-select-wrap { position: relative; }
.cp-select-wrap::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 10px; height: 6px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center; pointer-events: none; }
.cp-select { padding-right: 36px; cursor: pointer; }
.cp-select option { background: #111827; color: #fff; }
.cp-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.cp-submit {
  width: 100%; margin-top: 8px; padding: 15px 24px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; font-family: inherit;
  font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  gap: 9px; transition: opacity .25s, transform .2s; position: relative; overflow: hidden;
}
.cp-submit:hover { opacity: .88; transform: scale(1.015); }
.cp-submit:active { transform: scale(.985); }
.cp-submit svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.cp-success { display: none; text-align: center; padding: 40px 24px; }
.cp-success.visible { display: block; }
.cp-success-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #19817F, #4888F1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; }
.cp-success h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.cp-success p  { color: #9CA3AF; font-size: .95rem; }
.cp-reset-btn  { margin-top: 24px; }


/* === PAGE: news === */

#ni-root {
  font-family: var(--trive-font, 'Montserrat', sans-serif);
  color: #fff; position: relative; z-index: 1; background: transparent;
}

/* Suppress Squarespace native blog title — kept for SPA where blog title element may appear */
.BlogList-title, .blog-title, .entry-title, [data-content-field="title"].entry-title { display: none !important; }

.ni-hero { padding: 72px 48px 40px; position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; }
@media (max-width: 768px) { .ni-hero { padding: 48px 20px 28px; } }
.ni-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin: 0 0 14px;
  background: linear-gradient(90deg, #fff 0%, #19817F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ni-hero p { color: #9CA3AF; font-size: clamp(.95rem, 1.5vw, 1.05rem); max-width: 560px; line-height: 1.7; margin: 0; }

.ni-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 36px;
  max-width: 1280px; margin: 0 auto; padding: 0 48px 80px;
  position: relative; z-index: 10; align-items: start;
}
@media (max-width: 1100px) { .ni-layout { grid-template-columns: 1fr; padding: 0 20px 60px; } }

.ni-featured {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  margin-bottom: 36px; cursor: pointer; transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none; display: block; color: inherit;
}
.ni-featured:hover { transform: translateY(-8px); box-shadow: 0 32px 72px rgba(0,0,0,0.5); }
.ni-featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #19817F, #4888F1); z-index: 2; }
.ni-featured-img { position: relative; height: 320px; overflow: hidden; }
.ni-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; display: block; }
.ni-featured:hover .ni-featured-img img { transform: scale(1.06); }
.ni-featured-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(10,14,26,0.95) 100%); pointer-events: none; }
.ni-featured-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; letter-spacing: .04em;
}
.ni-featured-badge svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ni-featured-body { padding: 28px 32px 32px; }
@media (max-width: 640px) { .ni-featured-body { padding: 20px 20px 24px; } }
.ni-featured-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.ni-type-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 7px; font-size: .72rem; font-weight: 700; border: 1px solid; letter-spacing: .04em; }
.ni-type-article  { color: #4888F1; border-color: rgba(72,136,241,0.35);  background: rgba(72,136,241,0.1);  }
.ni-type-podcast  { color: #19817F; border-color: rgba(25,129,127,0.35);  background: rgba(25,129,127,0.1);  }
.ni-type-news     { color: #6C8E2F; border-color: rgba(108,142,47,0.35);  background: rgba(108,142,47,0.1);  }
.ni-type-video    { color: #19817F; border-color: rgba(25,129,127,0.35);  background: rgba(25,129,127,0.1);  }
.ni-type-badge svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ni-meta-item { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; color: #6B7280; }
.ni-meta-item svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ni-featured-body h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; line-height: 1.25; margin: 0 0 12px; color: #fff; transition: color .25s; }
.ni-featured:hover h2 { color: #19817F; }
.ni-featured-body p { color: #9CA3AF; font-size: .9rem; line-height: 1.7; margin: 0 0 20px; }
.ni-featured-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ni-author { font-size: .8rem; color: #6B7280; }
.ni-read-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: #19817F; text-decoration: none; transition: gap .2s; }
.ni-read-link:hover { gap: 10px; }
.ni-read-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.ni-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ni-section-head h3 { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0; white-space: nowrap; }
.ni-section-head::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

#ni-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ni-post-card {
  position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 0;
  border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  cursor: pointer; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  text-decoration: none; color: inherit;
}
.ni-post-card:hover { transform: translateX(6px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); border-color: rgba(25,129,127,0.25); }
.ni-post-thumb { position: relative; overflow: hidden; height: 100%; min-height: 110px; }
.ni-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.ni-post-card:hover .ni-post-thumb img { transform: scale(1.08); }
.ni-post-thumb-badge {
  position: absolute; top: 8px; left: 8px; display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 5px; font-size: .65rem; font-weight: 700;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; letter-spacing: .03em;
}
.ni-post-thumb-badge svg { width: 9px; height: 9px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ni-post-body { padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.ni-post-body h4 {
  font-size: .93rem; font-weight: 700; line-height: 1.4; margin: 0; color: #fff; transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ni-post-card:hover h4 { color: #19817F; }
.ni-post-body p {
  font-size: .8rem; color: #9CA3AF; line-height: 1.55; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ni-post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.ni-load-more {
  width: 100%; padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04); color: #D1D5DB; font-family: inherit; font-size: .9rem;
  font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: background .25s, border-color .25s, color .25s; backdrop-filter: blur(8px);
}
.ni-load-more:hover { background: linear-gradient(90deg, #19817F, #4888F1); border-color: transparent; color: #fff; }
.ni-load-more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.ni-load-more:hover svg { transform: translateX(4px); }

.ni-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 24px; }
.ni-widget { border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); overflow: hidden; }
.ni-widget-head { padding: 20px 22px 14px; font-size: 1rem; font-weight: 800; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.06); }

.ni-categories { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.ni-cat-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 9px 14px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04); color: #D1D5DB; font-family: inherit; font-size: .83rem;
  font-weight: 600; cursor: pointer; text-align: left; text-decoration: none; transition: background .2s, border-color .2s, color .2s;
}
.ni-cat-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(25,129,127,0.3); color: #fff; }
.ni-cat-btn.active { background: linear-gradient(90deg, rgba(25,129,127,0.18), rgba(72,136,241,0.18)); border-color: rgba(25,129,127,0.35); color: #fff; }

.ni-picks { padding: 6px 0 14px; }
.ni-pick-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 20px; cursor: pointer; text-decoration: none; color: inherit; transition: background .2s; }
.ni-pick-item:hover { background: rgba(255,255,255,0.04); }
.ni-pick-item + .ni-pick-item { border-top: 1px solid rgba(255,255,255,0.05); }
.ni-pick-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ni-pick-icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ni-pick-content { flex: 1; min-width: 0; }
.ni-pick-content h5 {
  font-size: .82rem; font-weight: 600; line-height: 1.4; margin: 0 0 5px; color: #D1D5DB; transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ni-pick-item:hover h5 { color: #19817F; }
.ni-pick-sub { font-size: .72rem; color: #6B7280; display: flex; align-items: center; gap: 6px; }
.ni-pick-dot { width: 3px; height: 3px; border-radius: 50%; background: #4B5563; }

.ni-newsletter { background: linear-gradient(135deg, rgba(25,129,127,0.12), rgba(72,136,241,0.08)); }
.ni-newsletter-body { padding: 0 20px 20px; }
.ni-newsletter-body p { font-size: .82rem; color: #9CA3AF; line-height: 1.6; margin: 0 0 14px; }
.ni-newsletter-input {
  width: 100%; padding: 11px 16px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; font-size: .85rem;
  outline: none; margin-bottom: 10px; transition: border-color .2s; box-sizing: border-box;
}
.ni-newsletter-input::placeholder { color: #4B5563; }
.ni-newsletter-input:focus { border-color: rgba(25,129,127,0.5); }
.ni-newsletter-btn {
  width: 100%; padding: 11px; border-radius: 9px; border: none;
  background: linear-gradient(90deg, #19817F, #4888F1); color: #fff; font-family: inherit;
  font-size: .85rem; font-weight: 700; cursor: pointer; transition: opacity .2s, transform .15s;
}
.ni-newsletter-btn:hover { opacity: .88; transform: scale(1.02); }

.ni-post-card.ni-hidden { display: none; }

@media (max-width: 1100px) { .ni-sidebar { position: static; } .ni-post-card { grid-template-columns: 100px 1fr; } }
@media (max-width: 540px) { .ni-post-card { grid-template-columns: 88px 1fr; } .ni-post-thumb { min-height: 90px; } }

/* ── Press & Media cards ── */
.ni-press-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ni-press-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--trive-card-bg);
  border: 1px solid var(--trive-card-border);
  border-left: 3px solid #19817F;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ni-press-card:hover { transform: translateX(6px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.ni-press-card-podcast { border-left-color: #4888F1; }
.ni-press-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ni-press-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.ni-press-logo { height: 16px; width: auto; max-width: 88px; object-fit: contain; display: block; }
.ni-press-pub { font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #19817F; }
.ni-press-card-podcast .ni-press-pub { color: #4888F1; }
.ni-press-dot { width: 3px; height: 3px; border-radius: 50%; background: #4B5563; flex-shrink: 0; }
.ni-press-card h4 { font-size: .95rem; font-weight: 700; color: #fff; margin: 0; line-height: 1.4; transition: color .25s; }
.ni-press-card:hover h4 { color: #19817F; }
.ni-press-card-podcast:hover h4 { color: #4888F1; }
.ni-press-card p { font-size: .82rem; color: #9CA3AF; line-height: 1.6; margin: 0; }
.ni-press-footer { display: flex; align-items: center; justify-content: flex-end; margin-top: 2px; }
.ni-press-link { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 700; color: #19817F; transition: gap .2s; }
.ni-press-card-podcast .ni-press-link { color: #4888F1; }
.ni-press-link:hover { gap: 9px; }
.ni-press-link svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════════════════════════ */
#art-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--trive-teal), var(--trive-blue));
  z-index: 200; transition: width .1s linear; pointer-events: none;
}

.art-wrap {
  max-width: 780px; margin: 0 auto; padding: 48px 24px 80px;
}

.art-back {
  display: inline-flex; align-items: center; gap: 8px; color: var(--trive-gray);
  font-size: .82rem; font-weight: 600; text-decoration: none; letter-spacing: .04em;
  text-transform: uppercase; transition: color .2s; margin-bottom: 40px;
}
.art-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.art-back:hover { color: var(--trive-teal); }

.art-header { margin-bottom: 36px; }
.art-meta-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 20px;
}
.art-meta-item {
  display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--trive-gray);
}
.art-meta-item svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

.art-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2;
  letter-spacing: -.02em; color: var(--trive-white); margin: 0 0 18px;
}
.art-subtitle {
  font-size: 1.05rem; color: var(--trive-gray); line-height: 1.7; margin: 0 0 24px;
}
.art-byline {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--trive-card-border);
}
.art-byline-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--trive-teal), var(--trive-blue));
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}
.art-byline-text { display: flex; flex-direction: column; gap: 2px; }
.art-byline-author { font-size: .85rem; font-weight: 700; color: var(--trive-white); }
.art-byline-pub { font-size: .75rem; color: var(--trive-gray); }

.art-hero {
  width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 48px;
  border: 1px solid var(--trive-card-border);
}
.art-hero img { width: 100%; height: auto; display: block; }

/* Article body typography */
.art-body { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.82); }
.art-body p { margin: 0 0 22px; }
.art-body h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--trive-white);
  margin: 48px 0 18px; letter-spacing: -.01em; line-height: 1.3;
  padding-top: 48px; border-top: 1px solid var(--trive-card-border);
}
.art-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.art-figure { margin: 32px 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--trive-card-border); }
.art-figure img { width: 100%; height: auto; display: block; }
.art-figure figcaption {
  padding: 10px 16px; font-size: .75rem; color: var(--trive-gray);
  background: rgba(255,255,255,0.03); line-height: 1.5;
}

.art-callout {
  background: rgba(25,129,127,0.08); border: 1px solid rgba(25,129,127,0.25);
  border-radius: 12px; padding: 22px 26px; margin: 28px 0;
}
.art-callout strong { color: var(--trive-teal); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.art-callout ul { margin: 0; padding-left: 20px; }
.art-callout li { margin-bottom: 8px; font-size: .9rem; color: rgba(255,255,255,0.85); }

.art-highlight {
  background: rgba(72,136,241,0.08); border-left: 3px solid var(--trive-blue);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0;
}
.art-highlight strong { color: var(--trive-blue); display: block; margin-bottom: 8px; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.art-highlight ul { margin: 0; padding-left: 18px; }
.art-highlight li { margin-bottom: 6px; font-size: .88rem; }

.art-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0;
}
.art-stat {
  background: var(--trive-card-bg); border: 1px solid var(--trive-card-border);
  border-radius: 12px; padding: 20px 16px; text-align: center;
}
.art-stat-num { font-size: 1.6rem; font-weight: 800; background: linear-gradient(135deg, var(--trive-teal), var(--trive-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.art-stat-label { font-size: .73rem; color: var(--trive-gray); margin-top: 4px; line-height: 1.4; }

/* Author bio */
.art-author-bio {
  margin-top: 60px; padding: 28px; border-radius: 16px;
  background: var(--trive-card-bg); border: 1px solid var(--trive-card-border);
  display: flex; gap: 20px; align-items: flex-start;
}
.art-author-bio-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--trive-teal), var(--trive-blue));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: #fff;
}
.art-author-bio-text h4 { font-size: .92rem; font-weight: 700; color: var(--trive-white); margin: 0 0 4px; }
.art-author-bio-text p { font-size: .83rem; color: var(--trive-gray); line-height: 1.6; margin: 0; }

/* Related articles */
.art-related { margin-top: 60px; }
.art-related h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--trive-gray); margin: 0 0 24px; }
.art-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.art-related-card {
  display: block; text-decoration: none; background: var(--trive-card-bg);
  border: 1px solid var(--trive-card-border); border-radius: 12px; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.art-related-card:hover { border-color: rgba(25,129,127,0.4); transform: translateY(-3px); }
.art-related-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.art-related-card-body { padding: 16px; }
.art-related-card-body span { font-size: .7rem; color: var(--trive-teal); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.art-related-card-body h4 { font-size: .88rem; font-weight: 700; color: var(--trive-white); margin: 6px 0 0; line-height: 1.4; }

@media (max-width: 640px) {
  .art-stat-row { grid-template-columns: 1fr 1fr; }
  .art-related-grid { grid-template-columns: 1fr; }
  .art-author-bio { flex-direction: column; }
}
