:root {
  --vv-ink: #101F5C;
  --vv-blue-dark: #152E7E;
  --vv-blue: #3468DD;
  --vv-sky: #6C9AF0;
  --vv-mist: #A9C6F7;
  --vv-pale: #DCE9FD;
  --vv-paper: #F5F8FE;
  --vv-white: #ffffff;
  --vv-muted: #4d5f8c;
  --vv-line: #DCE9FD;
  --vv-brass: #C9A227;
  --vv-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--vv-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(108, 154, 240, 0.18), transparent 28rem),
    linear-gradient(180deg, #F5F8FE 0%, #ffffff 56%, #F5F8FE 100%);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.new-page {
  min-height: 100vh;
  padding: 26px 24px 42px;
}

.new-nav,
.new-hero,
.new-content,
.new-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.new-nav,
.new-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.new-brand img,
.new-footer-brand img {
  display: block;
  height: 46px;
  width: auto;
}

.new-nav-links,
.new-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.new-nav-links a,
.new-footer-links a,
.new-card-link,
.new-breadcrumb a {
  color: var(--vv-blue);
  font-size: 14px;
  font-weight: 850;
}

.new-hero {
  padding: 84px 0 48px;
}

.new-founder-hero {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.new-founder-avatar {
  width: 118px;
  height: 118px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--vv-white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 42%),
    var(--vv-blue);
  box-shadow: 0 18px 44px rgba(16, 31, 92, 0.16);
  font-size: 34px;
  font-weight: 950;
}

.new-breadcrumb {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--vv-muted);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--vv-blue);
  font-family: var(--vv-mono);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.new-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--vv-muted);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.new-content {
  display: grid;
  gap: 18px;
}

.new-section-title {
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.1;
}

.new-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.new-card,
.new-featured-card {
  border: 1px solid var(--vv-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(16, 31, 92, 0.07);
}

.new-featured-card {
  min-height: 168px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.new-card {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.new-card.featured-post {
  min-height: 390px;
  padding: 0;
  overflow: hidden;
}

.new-post-art {
  min-height: 178px;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  color: var(--vv-ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 104, 221, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(201, 162, 39, 0.16), rgba(245, 248, 254, 0.98));
}

.new-post-art strong {
  max-width: 420px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.new-post-art em {
  color: var(--vv-blue);
  font-style: normal;
}

.new-post-body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.new-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--vv-white);
  background: var(--vv-blue);
  font-size: 28px;
  font-weight: 950;
}

.new-icon.gold { background: var(--vv-brass); color: var(--vv-ink); }
.new-icon.sky { background: var(--vv-sky); color: var(--vv-ink); }

.new-card h2,
.new-card h3,
.new-featured-card h2 {
  color: var(--vv-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.new-featured-card h2 {
  font-size: 28px;
}

.new-card p,
.new-featured-card p {
  margin-top: 10px;
  color: var(--vv-muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.56;
}

.new-article {
  max-width: 900px;
  display: grid;
  gap: 26px;
}

.new-article-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.new-article-card p {
  margin-top: 26px;
  color: var(--vv-muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.72;
}

.new-article-card p:first-child {
  margin-top: 0;
}

.new-article-card strong {
  color: var(--vv-ink);
}

.new-article-card h2 {
  margin-top: 58px;
  color: var(--vv-ink);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.08;
}

.new-share-row {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--vv-line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.new-share-tools {
  display: grid;
  gap: 10px;
  color: var(--vv-muted);
  font-size: 14px;
  font-weight: 850;
}

.linkedin-share {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--vv-white);
  background: #0A66C2;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.new-back-link {
  color: var(--vv-blue);
  font-size: 15px;
  font-weight: 900;
}

.new-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--vv-muted);
  font-size: 13px;
  font-weight: 850;
}

.new-pill {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--vv-blue);
  background: rgba(52, 104, 221, 0.09);
  font-size: 12px;
  font-weight: 950;
}

.new-footer {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--vv-line);
}

.new-footer-brand p {
  max-width: 340px;
  margin-top: 12px;
  color: var(--vv-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .new-grid,
  .new-featured-card,
  .new-founder-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .new-page { padding: 18px; }
  .new-nav,
  .new-footer {
    display: grid;
  }
  .new-hero { padding-top: 58px; }
  h1 { font-size: 40px; }
  .new-card,
  .new-featured-card { padding: 20px; }
  .new-card.featured-post { padding: 0; }
  .new-share-row {
    display: grid;
  }
}

/* New section polish: calmer editorial pages aligned with the public landing. */
body {
  color: var(--vv-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #F7FAFF 100%);
}

.new-page {
  padding: 20px clamp(16px, 3vw, 32px) 44px;
}

.new-nav,
.new-hero,
.new-content,
.new-footer {
  width: min(1200px, 100%);
}

.new-nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 31, 92, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(16, 31, 92, 0.06);
  backdrop-filter: blur(16px);
}

.new-brand img,
.new-footer-brand img {
  height: 44px;
}

.new-nav-links,
.new-footer-links {
  gap: 8px;
  align-items: center;
}

.new-nav-links a,
.new-footer-links a,
.new-card-link,
.new-breadcrumb a {
  border-radius: 999px;
  color: #33457e;
  font-size: 14px;
  font-weight: 850;
}

.new-nav-links a {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
}

.new-nav-links a:hover,
.new-nav-links a:focus-visible,
.new-nav-links a[aria-current='page'] {
  color: var(--vv-blue);
  background: #F5F8FE;
}

.new-hero {
  padding: clamp(74px, 10vw, 132px) 0 clamp(42px, 6vw, 72px);
}

.new-breadcrumb {
  margin-bottom: clamp(24px, 4vw, 42px);
  gap: 8px;
  color: #62709c;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--vv-blue);
  font-family: var(--vv-mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 920px;
  color: var(--vv-ink);
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 850;
  line-height: 0.94;
}

.new-hero > p:not(.eyebrow),
.new-founder-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: #46538A;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 650;
  line-height: 1.55;
}

.new-founder-hero {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  gap: 24px;
}

.new-founder-avatar {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: var(--vv-blue);
  background: #F5F8FE;
  box-shadow: none;
  font-size: 22px;
}

.new-content {
  gap: 28px;
}

.new-section-title {
  margin: clamp(12px, 3vw, 28px) 0 0;
  color: var(--vv-ink);
  font-size: clamp(28px, 3vw, 40px);
}

.new-grid {
  gap: 18px;
}

.new-featured-card,
.new-card,
.new-article-card {
  border: 1px solid rgba(52, 104, 221, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(16, 31, 92, 0.055);
}

.new-featured-card {
  min-height: 220px;
  padding: clamp(24px, 3.6vw, 42px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  background:
    linear-gradient(135deg, #ffffff 0%, #F5F8FE 100%);
}

.new-featured-card > .new-icon {
  display: none;
}

.new-card {
  min-height: 300px;
  padding: clamp(24px, 2.7vw, 34px);
  border-radius: 22px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.new-card:hover {
  border-color: rgba(52, 104, 221, 0.24);
  box-shadow: 0 24px 70px rgba(16, 31, 92, 0.085);
  transform: translateY(-2px);
}

.new-card.featured-post {
  min-height: 440px;
}

.new-post-art {
  min-height: 210px;
  padding: 28px;
  color: var(--vv-ink);
  background:
    linear-gradient(135deg, rgba(52, 104, 221, 0.12), rgba(245, 248, 254, 0.98));
}

.new-post-art strong {
  max-width: 450px;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 850;
  line-height: 0.96;
}

.new-post-art em {
  color: var(--vv-blue);
}

.new-post-body {
  padding: 26px;
  gap: 20px;
}

.new-icon {
  width: auto;
  height: auto;
  margin-bottom: 24px;
  border-radius: 0;
  place-items: start;
  color: var(--vv-blue);
  background: transparent;
  font-family: var(--vv-mono);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.new-icon.gold,
.new-icon.sky {
  color: var(--vv-blue);
  background: transparent;
}

.new-card h2,
.new-card h3,
.new-featured-card h2 {
  max-width: 680px;
  color: var(--vv-ink);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 850;
  line-height: 1.08;
}

.new-featured-card h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.new-card p,
.new-featured-card p {
  margin-top: 12px;
  color: #46538A;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}

.new-card-link {
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(52, 104, 221, 0.16);
  display: inline-flex;
  align-items: center;
  color: var(--vv-blue);
  background: #ffffff;
}

.new-card-link:hover,
.new-card-link:focus-visible {
  color: #ffffff;
  background: var(--vv-blue);
}

.new-pill {
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--vv-blue);
  background: #F5F8FE;
  font-family: var(--vv-mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-post-meta {
  align-items: center;
  color: #62709c;
  line-height: 1.35;
}

.new-article {
  max-width: 920px;
}

.new-article-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.new-article-card p {
  max-width: 780px;
  color: #46538A;
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.75;
}

.new-article-card h2 {
  max-width: 760px;
  margin-top: clamp(48px, 6vw, 72px);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 850;
}

.new-share-row {
  max-width: 780px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top-color: rgba(52, 104, 221, 0.14);
}

.linkedin-share {
  border-radius: 8px;
}

.new-back-link {
  color: var(--vv-blue);
}

.new-footer {
  margin-top: clamp(70px, 9vw, 124px);
  padding-top: 32px;
  border-top: 1px solid rgba(52, 104, 221, 0.12);
}

.new-footer-brand p {
  color: #46538A;
}

@media (max-width: 980px) {
  .new-nav {
    position: static;
    border-radius: 24px;
    align-items: flex-start;
  }

  .new-nav-links {
    justify-content: flex-end;
  }

  .new-grid,
  .new-featured-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .new-page {
    padding: 14px 14px 32px;
  }

  .new-nav {
    min-height: 0;
    padding: 14px;
    display: grid;
    gap: 14px;
  }

  .new-brand img,
  .new-footer-brand img {
    height: 38px;
  }

  .new-nav-links {
    justify-content: flex-start;
  }

  .new-nav-links a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .new-hero {
    padding: 54px 0 36px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .new-featured-card,
  .new-card,
  .new-post-body {
    padding: 20px;
  }

  .new-card {
    min-height: 0;
  }

  .new-card.featured-post {
    min-height: 0;
  }

  .new-post-art {
    min-height: 168px;
    padding: 20px;
  }
}
