:root {
  --vcv-bg: #090d10;
  --vcv-bg-2: #10181d;
  --vcv-panel: rgba(255, 255, 255, .08);
  --vcv-panel-strong: rgba(255, 255, 255, .13);
  --vcv-text: #f6f7f2;
  --vcv-muted: rgba(246, 247, 242, .68);
  --vcv-line: rgba(255, 255, 255, .16);
  --vcv-accent: #69e7c7;
  --vcv-accent-2: #f0c35a;
  --vcv-ink: #172027;
  --vcv-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vcv-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vcv-bg);
  color: var(--vcv-text);
  font-family: var(--vcv-font);
}

a {
  color: inherit;
}

.vcv-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: #fff;
  color: #111;
  padding: 10px 14px;
}

.vcv-skip-link:focus {
  transform: translateY(0);
}

.vcv-site {
  min-height: 100vh;
  overflow: hidden;
}

.vcv-hero {
  position: relative;
  min-height: 100vh;
  padding: 28px clamp(22px, 5vw, 72px) 70px;
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(105, 231, 199, .18), transparent 26%),
    radial-gradient(circle at 18% 84%, rgba(240, 195, 90, .18), transparent 28%),
    linear-gradient(135deg, #080c0f, #111a20 52%, #07090b);
}

.vcv-network,
.vcv-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.vcv-network {
  display: block;
  width: 100%;
  height: 100%;
}

.vcv-noise {
  z-index: -1;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .42) 74%, transparent 100%);
}

.vcv-header,
.vcv-simple-header {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.vcv-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.vcv-brand::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid var(--vcv-accent);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(105, 231, 199, .9);
}

.vcv-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.vcv-menu ul {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vcv-menu li {
  list-style: none;
}

.vcv-menu a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.vcv-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: var(--vcv-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.vcv-menu a:hover,
.vcv-menu a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.vcv-menu a:hover::after,
.vcv-menu a:focus-visible::after {
  transform: scaleX(1);
}

.vcv-hero__content {
  width: min(860px, 100%);
  align-self: center;
  margin: clamp(48px, 12vh, 130px) auto 0;
  text-align: center;
}

.vcv-kicker {
  margin: 0 0 18px;
  color: var(--vcv-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vcv-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.8vw, 92px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

.vcv-hero-title span {
  display: block;
}

.vcv-lead {
  width: min(720px, 100%);
  margin: 28px auto 0;
  color: var(--vcv-muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.vcv-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.vcv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: #f6f7f2;
  color: #11181d;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.vcv-button:hover,
.vcv-button:focus-visible {
  transform: translateY(-3px);
  background: var(--vcv-accent);
}

.vcv-button--ghost {
  background: transparent;
  color: #fff;
}

.vcv-button--ghost:hover,
.vcv-button--ghost:focus-visible {
  border-color: var(--vcv-accent);
  color: #07110f;
}

.vcv-status {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 42px;
  width: min(360px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid var(--vcv-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.vcv-status span,
.vcv-status em {
  display: block;
  color: var(--vcv-muted);
  font-size: 13px;
  font-style: normal;
}

.vcv-status strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.vcv-section {
  padding: clamp(78px, 9vw, 132px) clamp(22px, 5vw, 72px);
}

.vcv-section__head {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.vcv-section h2,
.vcv-contact h2,
.vcv-archive h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.vcv-work {
  background: #f4f3ec;
  color: var(--vcv-ink);
}

.vcv-work .vcv-kicker,
.vcv-systems .vcv-kicker,
.vcv-notes .vcv-kicker,
.vcv-contact .vcv-kicker {
  color: #167d67;
}

.vcv-card-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vcv-card,
.vcv-note {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 39, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(12, 19, 24, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.vcv-card:hover,
.vcv-note:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 125, 103, .35);
  box-shadow: 0 34px 86px rgba(12, 19, 24, .14);
}

.vcv-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #172027;
  color: #fff;
  font-weight: 900;
}

.vcv-card h3,
.vcv-note h3 {
  margin: 52px 0 18px;
  font-size: 27px;
  line-height: 1.08;
}

.vcv-card p,
.vcv-note p,
.vcv-system-copy p,
.vcv-contact p,
.vcv-post-card p {
  margin: 0;
  color: rgba(23, 32, 39, .72);
  font-size: 17px;
  line-height: 1.62;
}

.vcv-systems {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #10181d;
}

.vcv-terminal {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(105, 231, 199, .11), transparent 38%),
    #071014;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .38);
}

.vcv-terminal__bar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.vcv-terminal__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--vcv-accent-2);
}

.vcv-terminal__bar span:nth-child(2) {
  background: var(--vcv-accent);
}

.vcv-terminal__bar span:nth-child(3) {
  background: #ff756c;
}

.vcv-terminal pre {
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  color: #d9fff5;
  font-size: clamp(15px, 2vw, 24px);
  line-height: 1.68;
  white-space: pre-wrap;
}

.vcv-system-copy h2,
.vcv-system-copy p {
  color: #fff;
}

.vcv-system-copy p {
  color: var(--vcv-muted);
}

.vcv-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}

.vcv-metrics div {
  padding: 18px;
  border: 1px solid var(--vcv-line);
  border-radius: 8px;
  background: var(--vcv-panel);
}

.vcv-metrics dt {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.vcv-metrics dd {
  margin: 8px 0 0;
  color: var(--vcv-muted);
  font-size: 13px;
  line-height: 1.3;
}

.vcv-notes {
  background: #f8f8f3;
  color: var(--vcv-ink);
}

.vcv-note-grid,
.vcv-post-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vcv-notes__more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.vcv-note time,
.vcv-post-card time {
  color: #167d67;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vcv-note h3 {
  margin-top: 26px;
}

.vcv-note a,
.vcv-post-card a {
  color: inherit;
  text-decoration: none;
}

.vcv-contact {
  padding: clamp(78px, 10vw, 142px) clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(105, 231, 199, .2), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(240, 195, 90, .16), transparent 30%),
    #0b1115;
}

.vcv-contact__inner {
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.vcv-contact p {
  max-width: 650px;
  margin: 22px auto 34px;
  color: var(--vcv-muted);
}

.vcv-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--vcv-line);
  background: #070a0d;
  color: var(--vcv-muted);
  font-size: 13px;
}

.vcv-page {
  min-height: 100vh;
  background: #f8f8f3;
  color: var(--vcv-ink);
}

.vcv-notes-page {
  min-height: 100vh;
  background: #f8f8f3;
  color: var(--vcv-ink);
}

.vcv-notes-hero {
  position: relative;
  min-height: 58vh;
  padding: 28px clamp(22px, 5vw, 72px) 78px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 20%, rgba(105, 231, 199, .2), transparent 28%),
    linear-gradient(135deg, #080c0f, #111a20 58%, #07090b);
  color: #fff;
}

.vcv-notes-hero__content {
  width: min(920px, 100%);
  align-self: end;
  margin: clamp(42px, 10vh, 100px) auto 0;
  text-align: center;
}

.vcv-notes-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: .96;
}

.vcv-notes-hero p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--vcv-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.vcv-notes-tools {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 44px));
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
}

.vcv-notes-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(23, 32, 39, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(12, 19, 24, .12);
}

.vcv-notes-search label,
.vcv-notes-search span {
  display: block;
}

.vcv-notes-search span {
  margin-bottom: 8px;
  color: rgba(23, 32, 39, .62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vcv-notes-search input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(23, 32, 39, .16);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--vcv-ink);
  font: inherit;
}

.vcv-notes-search button {
  align-self: end;
  height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: #172027;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.vcv-category-pills {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 0 0 4px;
}

.vcv-category-pills a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(23, 32, 39, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--vcv-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.vcv-category-pills a.is-active {
  background: #172027;
  color: #fff;
}

.vcv-notes-archive {
  width: min(1180px, calc(100% - 44px));
  margin: 42px auto 0;
  padding-bottom: clamp(72px, 8vw, 120px);
}

.vcv-note-grid--archive {
  width: 100%;
}

.vcv-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.vcv-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 32, 39, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--vcv-ink);
  font-weight: 800;
  text-decoration: none;
}

.vcv-pagination .current {
  background: #172027;
  color: #fff;
}

.vcv-empty {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.vcv-single-page {
  min-height: 100vh;
  background: #f8f8f3;
  color: var(--vcv-ink);
}

.vcv-single {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) 0;
}

.vcv-back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: #167d67;
  font-weight: 900;
  text-decoration: none;
}

.vcv-single time {
  color: #167d67;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vcv-single h1 {
  margin: 18px 0 34px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
}

.vcv-single__content {
  font-size: 18px;
  line-height: 1.72;
}

.vcv-single__content :where(p, ul, ol, blockquote, pre, table) {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.vcv-single__content a {
  color: #167d67;
  font-weight: 700;
}

.vcv-single__content pre,
.vcv-single__content code {
  border-radius: 6px;
  background: #11181d;
  color: #ecfff9;
}

.vcv-single__content code {
  padding: .16em .34em;
}

.vcv-single__content pre {
  overflow-x: auto;
  padding: 18px;
}

.vcv-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.vcv-single--page {
  width: min(940px, calc(100% - 44px));
}

.vcv-single__content .wp-block-buttons {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.vcv-single__content .wp-block-button__link {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 32, 39, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--vcv-ink);
  font-weight: 900;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.vcv-single__content .wp-block-button__link:hover,
.vcv-single__content .wp-block-button__link:focus-visible {
  background: #172027;
  color: #fff;
  transform: translateY(-2px);
}

.vcv-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.vcv-link-grid a {
  display: block;
  padding: 20px;
  border: 1px solid rgba(23, 32, 39, .12);
  border-radius: 8px;
  background: #fff;
  color: var(--vcv-ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(12, 19, 24, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vcv-link-grid a:hover,
.vcv-link-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(12, 19, 24, .12);
}

.vcv-simple-header {
  padding: 28px clamp(22px, 5vw, 72px);
  background: #0b1115;
}

.vcv-archive {
  padding: 70px clamp(22px, 5vw, 72px);
}

.vcv-post-card {
  padding: 28px;
  border: 1px solid rgba(23, 32, 39, .12);
  border-radius: 8px;
  background: #fff;
}

.vcv-post-card h2 {
  margin: 18px 0 14px;
  font-size: 24px;
  line-height: 1.14;
}

.vcv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.vcv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .vcv-header,
  .vcv-simple-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .vcv-menu {
    flex-wrap: wrap;
  }

  .vcv-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 42px auto 0;
  }

  .vcv-card-grid,
  .vcv-note-grid,
  .vcv-post-list,
  .vcv-systems {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vcv-hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .vcv-hero h1 {
    font-size: 40px;
  }

  .vcv-hero__content {
    text-align: left;
  }

  .vcv-actions {
    justify-content: flex-start;
  }

  .vcv-card,
  .vcv-note {
    min-height: 0;
  }

  .vcv-card h3 {
    margin-top: 36px;
  }

  .vcv-metrics {
    grid-template-columns: 1fr;
  }

  .vcv-footer {
    flex-direction: column;
  }

  .vcv-notes-search {
    grid-template-columns: 1fr;
  }

  .vcv-notes-search button {
    width: 100%;
  }

  .vcv-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vcv-reveal,
  .vcv-menu a,
  .vcv-card,
  .vcv-note,
  .vcv-button {
    transition: none !important;
  }
}
