@charset "UTF-8";
:root {
  --accent: #ffdd33;
  --bg: #d9d9d9;
  --bg-secondary: #f5f5f7;
  --bg-hover: #e9e9e9;
  --text: #111113;
  --card-bg: #f5f5f7;
  --border-color: #e5e5e5;
  --bg-light-gray: #f5f5f7;
}

[data-theme=dark] {
  --bg: #2d3133;
  --bg-secondary: #2c2c2e;
  --bg-hover: #3a3a3c;
  --text: #ffffff;
  --card-bg: #2c2c2e;
  --border-color: #3a3a3c;
  --bg-light-gray: #2c2c2e;
  --accent: #ffdd33;
}
[data-theme=dark] a {
  color: var(--text);
}

body {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: var(--text);
}

h1:focus {
  border: none;
  outline: none;
}

blockquote,
code,
pre,
.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--text);
}

@keyframes textFlicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 1;
  }
  8% {
    opacity: 0.1;
  }
  9% {
    opacity: 1;
  }
  12% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--accent);
  }
}
@keyframes borderAnimateLR {
  from {
    background-size: 0% 100%;
    background-position: left center;
  }
  to {
    background-size: 100% 100%;
    background-position: right center;
  }
}
.bg-accent {
  background-color: var(--accent) !important;
}

.text-accent {
  color: var(--accent) !important;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: background 0.3s;
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.6;
  padding-top: 32px;
}

*,
header,
main {
  outline: none;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px var(--accent);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.workflow-container {
  display: flex;
  gap: 1rem;
}

.workflow-node {
  border: 1px solid var(--text);
  padding: 15px;
  background: var(--card-bg);
}

footer {
  border-top: 1px solid var(--text);
  padding: 4rem 0;
  margin-top: 4rem;
  color: var(--text);
}

.terminal-card {
  background-color: var(--card-bg);
  border: 1px solid var(--accent);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

.terminal-card-title {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.terminal-card-title::before {
  content: "[service]~# ";
  color: var(--text);
}

.terminal-card ul {
  list-style-type: none;
  padding-left: 0;
}

.terminal-card ul li::before {
  content: ">";
  color: var(--accent);
  margin-right: 10px;
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--accent);
  }
}
.blink {
  animation: blinker 1s step-start infinite;
  color: var(--accent);
}

.blinking-cursor::after {
  content: "_";
  animation: blink-caret 1s step-end infinite;
  margin-left: 5px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
.no-border-radius {
  border-radius: 0 !important;
}

.btn {
  border-radius: 0 !important;
}

a,
input,
textarea,
select,
button,
.badge {
  border-radius: 0 !important;
}

a {
  color: var(--text) !important;
  text-decoration: none !important;
}

.nav-logo {
  height: 24px;
  width: auto;
  pointer-events: none;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: background 0.3s;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 2rem;
}

.page-content {
  background-color: var(--bg);
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.system-panel {
  height: 32px;
  background: linear-gradient(90deg, #000 0%, #111119 100%);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent), 0.2);
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}
.system-panel a {
  text-decoration: none;
  padding: 0 10px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid var(--border-color);
}
.system-panel a:hover {
  color: var(--accent);
}
.system-panel .status-right {
  margin-left: auto;
  display: flex;
  gap: 15px;
  color: var(--text);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px var(--accent);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.workflow-container {
  display: flex;
  gap: 1rem;
}

.workflow-node {
  border: 1px solid var(--text);
  padding: 15px;
  background: var(--card-bg);
}

footer {
  border-top: 1px solid var(--text);
  padding: 2rem 0;
}
footer a {
  color: var(--text);
}

@media (max-width: 768px) {
  .system-panel a span {
    display: none;
  }
  .system-panel a i {
    font-size: 1.2rem;
    margin-right: 0;
  }
  .system-panel button {
    font-size: 12px;
    padding: 4px 8px;
  }
  #nav-clock-center {
    display: none;
  }
}
@media (max-width: 480px) {
  .system-panel {
    height: 36px;
    padding: 0 10px;
  }
  .system-panel a {
    padding: 0 5px;
    font-size: 10px;
  }
  .system-panel .status-right {
    gap: 8px;
  }
  .system-panel button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4; /* Adjusted for optimal readability */
}

.btn-vvg {
  background: var(--accent);
  border: 1px solid var(--text);
  border-radius: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-vvg:hover {
  background-color: #111119;
  color: #ffdd33;
}

.card {
  border: 1px solid var(--text);
  border-radius: 0;
  background: var(--card-bg);
  color: var(--text);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 0.95;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accent-box {
  background-color: var(--accent);
  padding: 2px 6px;
  display: inline-block;
}
.accent-box:hover {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  background: #000;
  color: var(--accent);
}

.insight-tag {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 11px;
  background: var(--card-bg);
  color: var(--text);
  padding: 2px 8px;
  border: 1px solid #000;
}

.vvg-logo-nav {
  height: 22px;
  width: auto;
  transition: all 0.3s ease;
  pointer-events: none;
}

.workflow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.workflow-node {
  border: 1px solid var(--text);
  padding: 15px;
  background: var(--card-bg);
  color: var(--text);
  width: 22%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.workflow-node:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 221, 51, 0.4);
}
.workflow-node.active, .workflow-node.visible {
  opacity: 1;
}
.workflow-node.active {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.workflow-node.visible {
  transform: translateY(0) scale(1.02);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.4s ease;
}
.workflow-node.loop-fade {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.45s ease;
}
.workflow-node .flow-el {
  opacity: 0;
  transform: scale(0.98) translateY(6px);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.workflow-node .flow-el.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.workflow-node h5,
.workflow-node p,
.workflow-node code {
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.4s ease;
  transform-origin: center center;
}

.workflow-connector {
  flex-grow: 1;
  height: 1px;
  background: var(--text);
  position: relative;
  opacity: 0;
  transform: scaleX(0.6) translateY(-6px);
  transition: all 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.workflow-connector.connector-active {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}
.workflow-connector::after {
  content: "▶";
  position: absolute;
  right: -5px;
  top: -8px;
  font-size: 10px;
}

#ai-terminal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10000;
  box-shadow: 0 0 20px rgba(255, 221, 51, 0.15);
  max-height: 90vh;
}

.terminal-closed {
  height: 40px;
  overflow: hidden;
  opacity: 0.8;
}
.terminal-closed:hover {
  opacity: 1;
  cursor: pointer;
}

.terminal-header {
  background: var(--accent);
  color: #000;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 12px;
}

.terminal-body {
  height: 400px;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.chat-output {
  flex-grow: 1;
  overflow-y: auto;
  font-size: 13px;
  margin-bottom: 10px;
}

.system-msg {
  color: #888;
  font-size: 11px;
  margin-bottom: 5px;
}

.user-msg {
  color: #fff;
  margin-bottom: 10px;
}

.ai-msg {
  margin-bottom: 15px;
  line-height: 1.4;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

.terminal-input-area {
  display: flex;
  border-top: 1px solid rgba(255, 221, 51, 0.3);
  padding-top: 10px;
}

.terminal-prompt {
  color: var(--accent);
  margin-right: 10px;
  font-weight: bold;
}

#user-input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.terminal-tag-group {
  display: inline-flex;
  align-items: stretch;
  margin-bottom: 1.5rem;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.15));
}

.tag-segment {
  padding: 4px 15px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  height: 28px;
  display: flex;
  align-items: center;
}

.tag-user {
  background: #000;
  color: #fff;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
  padding-right: 25px;
  z-index: 2;
}

.tag-path {
  background: var(--accent);
  color: #000;
  margin-left: -10px; /* Overlap */
  padding-left: 20px;
  clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 8% 50%);
  z-index: 1;
}

.terminal-card {
  background-color: var(--card-bg);
  border: 1px solid var(--accent);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 221, 51, 0.1);
}

.terminal-card-title {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.terminal-card-title::before {
  content: "[service]~# ";
  color: var(--text);
}

.terminal-card ul {
  list-style-type: none;
  padding-left: 0;
}
.terminal-card ul li::before {
  content: ">";
  color: var(--accent);
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .workflow-container {
    flex-direction: column;
    gap: 30px;
  }
  .workflow-node {
    width: 100%;
  }
  .workflow-connector {
    width: 1px;
    height: 30px;
  }
  .workflow-connector::after {
    right: -4px;
    bottom: -5px;
    top: auto;
    transform: rotate(90deg);
  }
  #ai-terminal {
    width: 90vw;
    right: 5vw;
    left: auto;
    max-width: 100%;
  }
  .terminal-body {
    height: 300px !important;
  }
  .terminal-tag-group {
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.1));
  }
  .tag-segment {
    padding: 3px 12px;
    font-size: 10px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  #ai-terminal {
    width: 95vw;
    right: 2.5vw;
    bottom: 10px;
  }
  .terminal-body {
    height: 250px !important;
  }
  .terminal-tag-group {
    flex-direction: column;
    gap: 5px;
  }
  .tag-segment {
    width: 100%;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%) !important;
    padding: 3px 10px !important;
    margin: 0 !important;
  }
}
.blog-filters {
  background-color: var(--card-bg);
  padding: 1rem;
  border: 1px solid var(--text);
  margin-bottom: 2rem;
}
.blog-filters .card {
  border-color: var(--accent);
}

.pagination .page-item .page-link {
  background-color: var(--card-bg);
  border: 1px solid var(--text);
  color: var(--text);
  margin: 0 2px;
  border-radius: 0;
}
.pagination .page-item .page-link:hover {
  background-color: var(--accent);
  color: #000;
}
.pagination .page-item.active .page-link {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.insight-tag {
  cursor: pointer;
}
.insight-tag:hover {
  background: var(--accent);
  color: #000;
}/*# sourceMappingURL=app.css.map */