﻿:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.04);
  --text: #f4efe8;
  --muted: #8a857d;
  --line: rgba(244, 239, 232, 0.16);
  --accent: #22f5ff;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 25%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 8px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

.cursor {
    position: fixed;
    left: 0;
    top: 0;

    pointer-events: none;
    z-index: 9999;

    font-family: Consolas, monospace;
    font-size: 22px;
    font-weight: 700;

    color: var(--accent);

    transform: translate(-50%, -50%);
    transition:
        transform .12s ease,
        color .2s ease,
        font-size .2s ease;

    user-select: none;
}
.cursor.is-hovering {

    font-size:30px;

    color:white;

}
.cursor.is-down{

    transform:translate(-50%,-50%) scale(.82);

}


a,
button,
.project-card,
.cap-card,
.btn {
  cursor: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.9rem min(5vw, 3rem);
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 0.95rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
}


.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
  background: #22f5ff;
}

.status-dot.developing {
  background: #ffd700;
}

.status-dot.coming {
  background: #8a857d;
}

.status-dot.writing {
  background: #ff6b6b;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-label {
  font-size: 0.62rem;
  color: inherit;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lang-button.active {
  background: var(--accent);
  color: #021214;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0;
}

nav a:hover {
  color: var(--text);
}

.system-status {
  background: rgba(34, 245, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.system-block {
  max-width: 820px;
  display: grid;
  gap: 1rem;
}

.system-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  font-weight: 700;
}

.system-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.currently-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 820px;
}

.currently-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.currently-item:hover {
  border-color: var(--accent);
  background: rgba(34, 245, 255, 0.04);
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
  min-width: 24px;
}

.currently-item span:not(.check) {
  font-size: 0.95rem;
  line-height: 1.4;
}

main {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 0 4rem;
}

.section {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hero-title-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: #021214;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.hero-terminal {
  align-self: end;
  width: 115%;
  max-width: 520px;
  min-height: 320px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  overflow: hidden;
}
.hero-terminal {
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-terminal.flash {
  border-color: rgba(34, 245, 255, 0.7);
  box-shadow: 0 0 28px rgba(34, 245, 255, 0.16);
}

.terminal-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terminal-body {
  min-height: 240px;
  font-size: 1rem;
  line-height: 1.8;
}

.terminal-line {
  display: none;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-family: inherit;
}

.terminal-line.is-visible {
  display: block;
  animation: terminalLineIn 0.2s ease both;
}

.prompt,
.terminal-success {
  color: var(--accent);
}

.terminal-error {
  color: #ff6b6b;
}

.terminal-status {
  margin-top: 0.8rem;
  color: var(--text);
}
.terminal-caret {
  display: inline-block;
  width: 0.58rem;
  height: 1rem;
  background: var(--accent);
  opacity: 0;
  vertical-align: middle;
  animation: none;
}

.terminal-caret.active {
  opacity: 1;
  animation: terminalBlink 0.9s steps(1, end) infinite;
}

@keyframes terminalLineIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes terminalBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.project-card,
.cap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 1.4rem;
}


.meta-line {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.meta-grid span {
  font-size: 0.8rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 1.35rem;
}

.section-intro {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text);
  line-height: 1.4;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.project-image {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.06);
}

.project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}
.project-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(34, 245, 255, 0.08);
}

.project-link {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.project-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-info {
  display: grid;
  gap: 0.65rem;
}

.project-info h3 {
  color: var(--text);
}

.project-info p {
  font-size: 0.9rem;
}

.project-type,
.project-open {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-type {
  color: var(--muted);
}

.project-open {
  margin-top: auto;
  color: var(--accent);
}

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

.cap-card {
  display: grid;
  gap: 0.64rem;
  min-height: 220px;
}

.cap-index {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 1.4rem;
  display: grid;
  gap: 0.6rem;
  min-height: 160px;
}

.service-item h3 {
  color: var(--text);
}

.service-item p {
  font-size: 0.95rem;
}

.journal-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  max-width: 600px;
  color: var(--muted);
}

.journal-placeholder p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.4rem 0;
}

.lab-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.lab-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 240px;
  transition: all 0.3s ease;
}

.lab-item:hover {
  border-color: var(--accent);
  background: rgba(34, 245, 255, 0.04);
}

.lab-item h3 {
  color: var(--text);
  font-size: 1.05rem;
}

.lab-item p {
  font-size: 0.9rem;
}

.lab-item .status-label {
  margin-top: auto;
}

.experimental {
  background: rgba(34, 245, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experimental-content {
  display: grid;
  gap: 1rem;
  max-width: 740px;
}

.experimental-note {
  padding: 1rem;
  border-left: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.95rem;
}

.contact {
  display: grid;
  gap: 1rem;
}

.contact .btn {
  width: max-content;
}

.footer {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.lang {
  display: none;
}

.lang.active {
  display: inline;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.log-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.log-block {
  max-width: 620px;
  border-left: 1px solid var(--accent);
  padding-left: 1.25rem;
}

.log-date,
.log-build {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.log-text {
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 900px) {
  .hero,
  .split-grid,
  .work-grid,
  .cap-grid,
  .service-list,
  .currently-list,
  .lab-items {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.5rem;
  }

  .header-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }


  nav {
    width: 100%;
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  .lab-items,
  .currently-list {
    grid-template-columns: 1fr;
  }
}

.loading-dots::after {
  content: "";
  display: inline-block;
  min-width: 1.8em;
  animation: loadingDots 1.8s steps(1, end) infinite;
}
@keyframes loadingDots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75% {
    content: "...";
  }

  100% {
    content: "";
  }
}
.contact-mail {
    margin-top: 1.5rem;
    font-size: .85rem;
    color: var(--muted);
    text-align: center;
}

.contact-mail a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-mail a:hover {
    color: var(--accent);
}

.contact-support {
    margin-top: 1.5rem;
}

.contact-support a {
    color: inherit;
    text-decoration: none;
    opacity: .8;
    transition: opacity .25s ease;
}

.contact-support a:hover {
    opacity: 1;
}
