:root {
  --bg: #07090d;
  --bg-soft: #0b0e14;
  --panel: #10141b;
  --panel-2: #141922;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(255, 255, 255, 0.22);
  --text: #f1f4f7;
  --muted: #8a93a3;
  --orange: #ff5a2f;
  --orange-soft: #ff805f;
  --violet: #7657ff;
  --cyan: #48d8ff;
  --green: #adff2f;
  --mono: "JetBrains Mono", Consolas, monospace;
  --sans: "Space Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--bg);
  scrollbar-width: thin;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: #050608;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.site-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

.cursor-aura,
.cursor-core {
  border-radius: 50%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  z-index: 90;
}

.cursor-aura {
  background: radial-gradient(circle, rgba(255, 90, 47, 0.2) 0, rgba(118, 87, 255, 0.1) 32%, transparent 70%);
  height: 280px;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
  width: 280px;
}

.cursor-core {
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 90, 47, 0.85);
  height: 5px;
  transition: height 0.2s ease, width 0.2s ease, opacity 0.25s ease;
  width: 5px;
}

.cursor-core.active {
  height: 11px;
  width: 11px;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--orange), var(--violet));
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  width: 0;
  z-index: 120;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid transparent;
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 4.5vw;
  position: fixed;
  top: 0;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
  width: 100%;
  z-index: 80;
}

.site-header.scrolled {
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 13, 0.82);
  border-color: var(--line);
  height: 70px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  position: relative;
  z-index: 82;
}

.brand-symbol {
  align-items: center;
  border: 1px solid var(--line-bright);
  display: inline-flex;
  font-size: 20px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  letter-spacing: -0.08em;
  position: relative;
  width: 38px;
}

.brand-symbol::before {
  border-left: 5px solid transparent;
  border-top: 5px solid var(--orange);
  content: "";
  left: -1px;
  position: absolute;
  top: -1px;
}

.brand-symbol span {
  color: var(--orange);
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.brand-name small {
  color: var(--orange);
  display: block;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.38em;
  margin-top: 5px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.8vw, 45px);
}

.site-nav a {
  color: #c2c8d1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a:not(.nav-contact)::after {
  background: var(--orange);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  width: 100%;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a span {
  color: #596171;
  font-size: 8px;
  margin-right: 7px;
}

.site-nav .nav-contact {
  align-items: center;
  border: 1px solid var(--line-bright);
  display: flex;
  gap: 24px;
  padding: 13px 16px;
  text-transform: uppercase;
}

.nav-contact b {
  color: var(--orange);
  font-size: 15px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  position: relative;
  width: 42px;
  z-index: 82;
}

.menu-toggle span {
  background: var(--text);
  height: 1px;
  left: 9px;
  position: absolute;
  transition: transform 0.3s ease, top 0.3s ease;
  width: 24px;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle.active span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle.active span:last-child { top: 20px; transform: rotate(-45deg); }

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 70% 35%, rgba(118, 87, 255, 0.13), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(255, 90, 47, 0.08), transparent 29%),
    var(--bg);
  display: grid;
  gap: 6vw;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  min-height: 100vh;
  overflow: hidden;
  padding: 135px 5vw 105px;
  position: relative;
}

.hero-grid,
.mission-grid,
.contact-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.037) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.037) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
  position: absolute;
}

.hero::after {
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
  height: 46vw;
  position: absolute;
  right: -12vw;
  top: 8%;
  width: 46vw;
}

.hero-flare {
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.23;
  pointer-events: none;
  position: absolute;
}

.flare-one {
  background: var(--violet);
  height: 300px;
  right: 8%;
  top: 24%;
  width: 300px;
}

.flare-two {
  background: var(--orange);
  bottom: -80px;
  height: 230px;
  left: 15%;
  width: 230px;
}

.cross {
  color: #38404d;
  font-family: var(--mono);
  font-size: 17px;
  position: absolute;
}

.cross-one { left: 48.7%; top: 16%; }
.cross-two { bottom: 12%; right: 4%; }

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.status-pill {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 8px;
  gap: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.status-pill i,
.available i {
  animation: pulse 1.8s infinite;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(173, 255, 47, 0.8);
  height: 5px;
  width: 5px;
}

.status-pill b {
  border-left: 1px solid var(--line);
  color: #666f7e;
  font-weight: 400;
  margin-left: 5px;
  padding-left: 10px;
}

@keyframes pulse {
  50% { box-shadow: 0 0 3px rgba(173, 255, 47, 0.3); opacity: 0.55; }
}

.kicker {
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  padding-left: 42px;
  position: relative;
  text-transform: uppercase;
}

.kicker::before {
  background: var(--orange);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 28px;
}

.hero h1 {
  font-size: clamp(3.55rem, 6.25vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.8;
  max-width: 790px;
}

.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 244, 247, 0.72);
}

.hero-dot {
  color: var(--orange);
}

.hero-description {
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.7;
  margin-top: 32px;
  max-width: 585px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-width: 205px;
  padding: 17px 19px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.button b {
  font-size: 16px;
}

.button-primary {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #08090c;
}

.button-primary:hover {
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.button-ghost {
  border: 1px solid var(--line-bright);
  color: #c6ccd5;
}

.button-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  list-style: none;
  margin-top: 35px;
}

.hero-tags li {
  align-items: center;
  color: #6f7887;
  display: flex;
  font-family: var(--mono);
  font-size: 8px;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-tags i {
  background: #3d4654;
  height: 3px;
  transform: rotate(45deg);
  width: 3px;
}

.hero-visual {
  justify-self: center;
  max-width: 780px;
  perspective: 1000px;
  transform: rotate(1.5deg);
  transition: transform 0.15s ease-out;
  width: 100%;
}

.browser-frame {
  background: #0f1218;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.62), 0 0 80px rgba(118, 87, 255, 0.08);
  padding: 7px;
  position: relative;
}

.browser-bar {
  align-items: center;
  color: #687181;
  display: grid;
  font-family: var(--mono);
  font-size: 7px;
  grid-template-columns: 1fr auto 1fr;
  height: 30px;
  letter-spacing: 0.08em;
  padding: 0 8px;
}

.browser-bar b { justify-self: end; }

.browser-dots { display: flex; gap: 5px; }
.browser-dots i { background: #414854; border-radius: 50%; height: 5px; width: 5px; }
.browser-dots i:first-child { background: var(--orange); }

.server-screen {
  background:
    linear-gradient(115deg, rgba(4, 7, 11, 0.08) 25%, rgba(4, 7, 11, 0.78) 72%),
    linear-gradient(150deg, #242f40, #0a0c12 75%);
  min-height: clamp(370px, 38vw, 550px);
  overflow: hidden;
  padding: 27px 30px;
  position: relative;
}

.server-screen::before {
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(255, 255, 255, 0.02) 4px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 7;
}

.corteiz-screen {
  background: #08090c;
  padding: 0;
}

.hero-project-shot {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  transition: filter 0.5s ease, transform 0.9s cubic-bezier(0.2, 0.72, 0.25, 1);
  width: 100%;
}

.hero-visual:hover .hero-project-shot {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}

.server-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 8;
}

.server-nav strong {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.server-nav strong span { color: var(--cyan); }
.server-nav div { display: flex; gap: 16px; }
.server-nav div i { background: rgba(255, 255, 255, 0.45); height: 1px; width: 18px; }
.server-nav button,
.server-copy button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.12em;
  padding: 8px 10px;
}

.server-copy {
  left: 8%;
  position: absolute;
  top: 25%;
  z-index: 6;
}

.server-copy > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.2em;
}

.server-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 5.3rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.83;
  margin: 18px 0 16px;
}

.server-copy h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.server-copy p {
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(7px, 0.8vw, 11px);
  margin-bottom: 22px;
}

.server-copy button {
  background: var(--cyan);
  border: 0;
  color: #071015;
  padding: 10px 12px;
}

.server-copy button b { margin-left: 22px; }

.city-sun {
  background: linear-gradient(135deg, rgba(118, 87, 255, 0.8), rgba(72, 216, 255, 0.18));
  border-radius: 50%;
  box-shadow: 0 0 75px rgba(118, 87, 255, 0.38);
  height: 45%;
  position: absolute;
  right: 3%;
  top: 20%;
  width: 35%;
}

.city {
  background: #080b10;
  bottom: 0;
  clip-path: polygon(0 54%, 8% 54%, 8% 31%, 15% 31%, 15% 65%, 23% 65%, 23% 17%, 31% 17%, 31% 47%, 40% 47%, 40% 8%, 49% 8%, 49% 68%, 59% 68%, 59% 38%, 68% 38%, 68% 58%, 76% 58%, 76% 20%, 85% 20%, 85% 48%, 94% 48%, 94% 33%, 100% 33%, 100% 100%, 0 100%);
  height: 56%;
  position: absolute;
  right: 0;
  width: 53%;
  z-index: 3;
}

.city-back {
  background: rgba(32, 43, 58, 0.72);
  bottom: 4%;
  right: 9%;
  transform: scale(1.13);
  z-index: 2;
}

.city-front::after {
  background-image: radial-gradient(circle, rgba(72, 216, 255, 0.72) 0 1px, transparent 1.5px);
  background-size: 12px 16px;
  content: "";
  inset: 18% 6% 0 6%;
  opacity: 0.38;
  position: absolute;
}

.screen-coordinate {
  bottom: 15px;
  color: #687181;
  font-family: var(--mono);
  font-size: 5px;
  left: 18px;
  line-height: 1.8;
  position: absolute;
}

.visual-label {
  color: #687181;
  display: flex;
  font-family: var(--mono);
  font-size: 7px;
  justify-content: space-between;
  letter-spacing: 0.15em;
  position: absolute;
  width: 100%;
}

.label-top { top: -24px; }
.label-bottom { bottom: -24px; }

.floating-card {
  backdrop-filter: blur(13px);
  background: rgba(14, 18, 25, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  position: absolute;
  z-index: 10;
}

.server-status-card {
  left: -42px;
  padding: 17px;
  top: 14%;
  width: 168px;
}

.card-heading {
  align-items: center;
  color: #747e8c;
  display: flex;
  font-family: var(--mono);
  font-size: 6px;
  justify-content: space-between;
  letter-spacing: 0.1em;
}

.card-heading span { align-items: center; display: flex; gap: 6px; }
.card-heading i { background: var(--green); border-radius: 50%; height: 4px; width: 4px; }
.card-heading b { color: #313945; font-size: 8px; }
.server-status-card > strong { color: var(--green); display: block; font: 600 23px var(--mono); margin: 17px 0; }
.player-count { display: flex; font-family: var(--mono); font-size: 6px; justify-content: space-between; }
.player-count span { color: #6b7482; }
.player-count b { color: #c6ccd5; }
.status-line { background: #252c36; height: 2px; margin-top: 10px; }
.status-line i { background: var(--green); display: block; height: 100%; width: 72%; }

.discord-card {
  align-items: center;
  bottom: 9%;
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  right: -25px;
  width: 190px;
}

.discord-mark {
  align-items: center;
  background: #5865f2;
  display: flex;
  font-size: 22px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.discord-card div { display: flex; flex: 1; flex-direction: column; gap: 4px; }
.discord-card small { color: #697382; font: 5px var(--mono); letter-spacing: 0.14em; }
.discord-card strong { font: 600 7px var(--mono); letter-spacing: 0.05em; }
.discord-card > i { background: var(--green); border-radius: 50%; box-shadow: 0 0 7px var(--green); height: 5px; width: 5px; }

.scroll-cue {
  align-items: center;
  bottom: 32px;
  color: #626b78;
  display: flex;
  font-family: var(--mono);
  font-size: 7px;
  gap: 14px;
  left: 5vw;
  letter-spacing: 0.16em;
  position: absolute;
  z-index: 3;
}

.scroll-cue i {
  animation: scrollDown 1.6s infinite;
  color: var(--orange);
  font-size: 13px;
  font-style: normal;
}

@keyframes scrollDown {
  50% { transform: translateY(5px); }
}

.signal-strip {
  background: var(--orange);
  color: #090a0d;
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(-0.7deg) scale(1.02);
}

.signal-track {
  animation: marquee 28s linear infinite;
  display: flex;
  font: 600 11px var(--mono);
  letter-spacing: 0.1em;
  width: max-content;
}

.signal-track span { padding-right: 55px; }
.signal-track b { font-size: 8px; margin-right: 14px; }

@keyframes marquee { to { transform: translateX(-50%); } }

.section {
  padding: 135px 5vw;
  position: relative;
}

.section-index {
  border-bottom: 1px solid var(--line);
  color: #677080;
  display: flex;
  font-family: var(--mono);
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.13em;
  padding-bottom: 15px;
}

.section-title {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 75px 0 80px;
}

.section-title > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 390px;
}

.section-title h2,
.process-intro h2,
.contact-content h2 {
  font-size: clamp(3.5rem, 7.2vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-align: right;
}

.section-title h2 span,
.process-intro h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.solutions {
  background: var(--bg-soft);
  padding-top: 155px;
}

.solution-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.solution-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 550px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.35s ease;
}

.solution-card::before {
  background: linear-gradient(135deg, rgba(255, 90, 47, 0.09), transparent 36%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(255, 90, 47, 0.48);
  transform: translateY(-7px);
}

.solution-card:hover::before { opacity: 1; }
.solution-card.featured { background: #121722; border-color: rgba(118, 87, 255, 0.46); }
.solution-card.featured::after { background: var(--violet); content: ""; height: 2px; left: 0; position: absolute; top: 0; width: 100%; }

.card-topline {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.card-topline span { color: #5f6877; font-size: 9px; }
.card-topline i { border: 1px solid var(--line); color: #747e8d; font-size: 7px; font-style: normal; letter-spacing: 0.14em; padding: 5px 7px; }

.solution-icon {
  height: 98px;
  margin: 65px 0 48px;
  position: relative;
  width: 98px;
}

.server-icon { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.server-icon span { border: 1px solid #596171; display: block; height: 19px; position: relative; width: 76px; }
.server-icon span::before { background: var(--orange); border-radius: 50%; content: ""; height: 4px; left: 8px; position: absolute; top: 7px; width: 4px; }
.server-icon span::after { background: #454d5a; box-shadow: 8px 0 #454d5a, 16px 0 #454d5a; content: ""; height: 2px; position: absolute; right: 24px; top: 8px; width: 3px; }

.target-icon { border: 1px solid #515967; border-radius: 50%; }
.target-icon::before,
.target-icon::after { background: #515967; content: ""; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); }
.target-icon::before { height: 1px; width: 128%; }
.target-icon::after { height: 128%; width: 1px; }
.target-icon span { border: 1px solid #515967; border-radius: 50%; inset: 20px; position: absolute; }
.target-icon i { background: var(--violet); border-radius: 50%; box-shadow: 0 0 16px var(--violet); height: 7px; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 7px; }

.nodes-icon::before,
.nodes-icon::after { background: #4c5562; content: ""; left: 15px; position: absolute; top: 48px; transform: rotate(28deg); transform-origin: left; width: 78px; height: 1px; }
.nodes-icon::after { transform: rotate(-28deg); }
.nodes-icon span { background: #11151c; border: 1px solid #687181; height: 20px; position: absolute; width: 20px; z-index: 2; }
.nodes-icon span:nth-child(1) { left: 5px; top: 39px; }
.nodes-icon span:nth-child(2) { right: 1px; top: 8px; }
.nodes-icon span:nth-child(3) { bottom: 8px; right: 1px; }
.nodes-icon span:nth-child(4) { background: var(--orange); border-color: var(--orange); height: 8px; left: 48px; top: 45px; width: 8px; }

.solution-card h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.solution-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.solution-card ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin-top: auto;
  padding-top: 17px;
}

.solution-card li {
  color: #747e8e;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  margin: 9px 0;
  padding-left: 14px;
  position: relative;
  text-transform: uppercase;
}

.solution-card li::before { color: var(--orange); content: "/"; left: 0; position: absolute; }
.card-corner { bottom: 27px; color: var(--orange); font-family: var(--mono); font-size: 17px; opacity: 0; position: absolute; right: 25px; transform: translate(-5px, 5px); transition: opacity 0.3s ease, transform 0.3s ease; }
.solution-card:hover .card-corner { opacity: 1; transform: none; }

.mission {
  align-items: center;
  background: var(--orange);
  color: #0a0b0e;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 630px;
  overflow: hidden;
  padding: 100px 8vw;
  position: relative;
}

.mission-grid {
  background-image: linear-gradient(rgba(5, 6, 8, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 6, 8, 0.1) 1px, transparent 1px);
  mask-image: none;
}

.mission::after {
  border: 1px solid rgba(8, 9, 12, 0.22);
  border-radius: 50%;
  content: "";
  height: 570px;
  left: -170px;
  position: absolute;
  top: -270px;
  width: 570px;
}

.mission-copy,
.mission-console { position: relative; z-index: 2; }
.mission-code { font: 9px var(--mono); letter-spacing: 0.12em; }
.mission-copy > p { font-size: 15px; margin: 55px 0 20px; }
.mission-copy h2 { font-size: clamp(2.7rem, 5.8vw, 6.5rem); letter-spacing: -0.07em; line-height: 0.92; }
.mission-copy h2 span { color: rgba(10, 11, 14, 0.23); }

.mission-console {
  background: #0a0c10;
  box-shadow: 22px 22px 0 rgba(8, 9, 12, 0.13);
  color: #9aa4b2;
  font: 9px/1.6 var(--mono);
  min-width: 350px;
  padding: 28px;
  transform: rotate(2deg);
}

.mission-console > div { border-bottom: 1px solid #252a33; color: #d3d8df; margin-bottom: 22px; padding-bottom: 17px; }
.mission-console > div span { color: var(--orange); }
.mission-console p { display: flex; margin: 13px 0; }
.mission-console p i { color: var(--green); font-style: normal; margin-right: 10px; }
.mission-console p b { color: #596270; font-weight: 400; margin-left: auto; }
.mission-console .console-last { color: #d3d8df; margin-top: 30px; }
.mission-console .console-last i { color: var(--orange); }
.terminal-cursor { animation: terminalBlink 1s steps(2) infinite; background: var(--orange); display: inline-block; height: 12px; margin-left: 5px; width: 5px; }
@keyframes terminalBlink { 50% { opacity: 0; } }

.projects { background: #090b10; }
.projects-title { align-items: center; }
.project-list { display: block; }
.project-visual { aspect-ratio: 1920 / 950; background: #08090c; border: 1px solid var(--line); overflow: hidden; position: relative; }
.corteiz-video { height: 100%; inset: 0; object-fit: cover; position: absolute; transition: filter 0.5s ease, transform 0.9s cubic-bezier(0.2, 0.72, 0.25, 1); width: 100%; }
.corteiz-case:hover .corteiz-video { filter: saturate(1.08) contrast(1.03); transform: scale(1.015); }
.corteiz-shade { background: linear-gradient(180deg, rgba(3, 4, 6, 0.32), transparent 30%, transparent 65%, rgba(3, 4, 6, 0.72)); inset: 0; pointer-events: none; position: absolute; z-index: 2; }
.project-tag { align-items: center; backdrop-filter: blur(10px); background: rgba(7, 8, 11, 0.72); border: 1px solid rgba(255, 255, 255, 0.18); display: flex; font: 7px var(--mono); gap: 8px; left: 25px; letter-spacing: 0.13em; padding: 8px 10px; position: absolute; top: 25px; z-index: 4; }
.project-tag i { animation: pulse 1.8s infinite; background: #e30039; border-radius: 50%; box-shadow: 0 0 10px rgba(227, 0, 57, 0.8); height: 5px; width: 5px; }
.project-number { bottom: 23px; font: 9px var(--mono); position: absolute; right: 25px; z-index: 4; }
.corteiz-play { align-items: center; background: transparent; border: 0; bottom: 22px; cursor: pointer; display: flex; font: 7px var(--mono); gap: 10px; left: 25px; letter-spacing: 0.12em; padding: 0; position: absolute; z-index: 4; }
.corteiz-play i { align-items: center; background: #e30039; border-radius: 50%; display: flex; font-size: 7px; font-style: normal; height: 25px; justify-content: center; padding-left: 2px; width: 25px; }

.project-caption { align-items: center; border-top: 1px solid var(--line); display: flex; justify-content: space-between; margin-top: 14px; padding-top: 15px; }
.project-caption span { font-size: 17px; font-weight: 600; }
.project-caption p { color: #657080; font: 7px var(--mono); letter-spacing: 0.06em; margin-top: 5px; text-transform: uppercase; }
.project-caption > b { color: #747e8d; font: 7px var(--mono); letter-spacing: 0.08em; }
.project-caption > b i { color: #e30039; font-size: 10px; font-style: normal; margin-left: 15px; }
.corteiz-details { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); margin-top: 90px; padding: 28px 0 70px; }
.corteiz-details-label { color: #646d7a; display: flex; font: 7px var(--mono); justify-content: space-between; letter-spacing: 0.12em; }
.corteiz-details-label b { font-weight: 400; }
.corteiz-details-copy { align-items: end; display: grid; gap: 8vw; grid-template-columns: 1.1fr 0.9fr; margin-top: 75px; }
.corteiz-details-copy h3 { font-size: clamp(2.8rem, 5.8vw, 6.5rem); letter-spacing: -0.07em; line-height: 0.88; }
.corteiz-details-copy h3 span { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.54); }
.corteiz-details-copy > div > p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 520px; }
.corteiz-details-copy ul { border-top: 1px solid var(--line); list-style: none; margin-top: 28px; padding-top: 15px; }
.corteiz-details-copy li { color: #727c89; font: 8px var(--mono); letter-spacing: 0.06em; padding: 8px 0 8px 17px; position: relative; text-transform: uppercase; }
.corteiz-details-copy li::before { color: #e30039; content: "/"; left: 0; position: absolute; }

.process { background: var(--bg-soft); }
.process-layout { display: grid; gap: 8vw; grid-template-columns: 0.7fr 1.3fr; margin-top: 85px; }
.process-intro { align-self: start; position: sticky; top: 120px; }
.process-intro h2 { text-align: left; }
.process-intro p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 45px 0 28px; max-width: 370px; }
.process-intro > a { border-bottom: 1px solid var(--orange); color: var(--orange-soft); font: 9px var(--mono); letter-spacing: 0.1em; padding-bottom: 7px; }
.process-intro > a b { margin-left: 20px; }
.process-steps { border-top: 1px solid var(--line); }
.process-step { align-items: start; border-bottom: 1px solid var(--line); display: grid; gap: 40px; grid-template-columns: 45px 1fr auto; min-height: 190px; padding: 35px 10px; transition: background 0.3s ease, padding 0.3s ease; }
.process-step:hover { background: rgba(255, 255, 255, 0.018); padding-left: 22px; padding-right: 22px; }
.step-number { color: var(--orange); font: 9px var(--mono); }
.process-step small { color: #5f6977; display: block; font: 7px var(--mono); letter-spacing: 0.16em; margin-bottom: 22px; }
.process-step h3 { font-size: clamp(1.35rem, 2.4vw, 2.25rem); letter-spacing: -0.04em; }
.process-step p { color: var(--muted); font-size: 12px; line-height: 1.6; margin-top: 10px; max-width: 530px; }
.process-step > i { color: #555e6b; font: 300 23px var(--mono); font-style: normal; transition: color 0.3s ease, transform 0.3s ease; }
.process-step:hover > i { color: var(--orange); transform: rotate(90deg); }

.contact {
  background: var(--violet);
  color: white;
  min-height: 770px;
  overflow: hidden;
  padding: 70px 5vw 80px;
  position: relative;
}

.contact-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black, transparent);
}

.contact::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  height: 580px;
  position: absolute;
  right: -170px;
  top: -220px;
  width: 580px;
}

.contact-scan {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  bottom: -420px;
  height: 750px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 750px;
}

.contact-scan::before,
.contact-scan::after { border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 50%; content: ""; inset: 14%; position: absolute; }
.contact-scan::after { inset: 29%; }
.contact .section-index { border-color: rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.57); position: relative; z-index: 2; }
.contact-content { margin: 115px auto 0; max-width: 1000px; position: relative; text-align: center; z-index: 2; }
.contact .kicker { color: rgba(255, 255, 255, 0.72); display: inline-block; }
.contact .kicker::before { background: white; }
.contact-content h2 { font-size: clamp(4rem, 9.5vw, 10.5rem); margin: 30px 0; text-align: center; }
.contact-content h2 span { color: var(--green); }
.contact-text { color: rgba(255, 255, 255, 0.68); font-size: 14px; line-height: 1.65; margin: 0 auto 32px; max-width: 580px; }
.button-light { background: white; border: 1px solid white; color: #090a0d; margin: auto; min-width: 235px; }
.button-light:hover { background: var(--green); border-color: var(--green); }
.contact-meta { bottom: 35px; display: grid; font: 7px var(--mono); gap: 7px 35px; grid-template-columns: auto auto; left: 5vw; letter-spacing: 0.09em; position: absolute; z-index: 2; }
.contact-meta span { color: rgba(255, 255, 255, 0.48); }
.contact-meta b { font-weight: 500; }
.contact-meta .available { align-items: center; display: flex; gap: 7px; }
.available i { display: inline-block; }

.site-footer { background: #050609; padding: 65px 5vw 28px; }
.footer-top { align-items: center; display: grid; grid-template-columns: 1fr 1fr 1fr; padding-bottom: 70px; }
.footer-top > p { color: #687181; font-size: 13px; line-height: 1.55; text-align: center; }
.footer-links { display: flex; gap: 25px; justify-content: end; }
.footer-links a { color: #858e9b; font: 8px var(--mono); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--line); color: #4d5561; display: flex; font: 7px var(--mono); justify-content: space-between; letter-spacing: 0.08em; padding-top: 25px; text-transform: uppercase; }
.footer-bottom a { color: #7e8794; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.72, 0.25, 1), transform 0.8s cubic-bezier(0.2, 0.72, 0.25, 1);
}

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

@media (max-width: 1120px) {
  .hero { gap: 5vw; grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr); }
  .server-status-card { left: -22px; }
  .discord-card { right: -12px; }
  .solution-card { padding: 24px; }
  .mission { gap: 5vw; padding-inline: 5vw; }
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .site-nav {
    align-items: flex-start;
    background: rgba(7, 9, 13, 0.98);
    flex-direction: column;
    gap: 0;
    inset: 0;
    justify-content: center;
    padding: 13vw;
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.72, 0, 0.2, 1);
    z-index: 81;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { border-bottom: 1px solid var(--line); color: var(--text); font-family: var(--sans); font-size: 28px; font-weight: 600; padding: 20px 0; width: 100%; }
  .site-nav a span { font-family: var(--mono); }
  .site-nav .nav-contact { border: 1px solid var(--orange); color: var(--orange); margin-top: 35px; padding: 18px; }
  .hero { gap: 105px; grid-template-columns: 1fr; padding-bottom: 135px; padding-top: 135px; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-visual { max-width: 690px; width: 90%; }
  .server-screen { min-height: 500px; }
  .scroll-cue { display: none; }
  .section-title { align-items: flex-start; flex-direction: column-reverse; gap: 40px; }
  .section-title h2 { text-align: left; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 450px; }
  .solution-icon { margin: 45px 0 35px; }
  .mission { grid-template-columns: 1fr; padding-block: 100px; }
  .mission-console { justify-self: end; width: min(500px, 88vw); }
  .corteiz-details-copy { align-items: start; gap: 45px; grid-template-columns: 1fr; margin-top: 55px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .process-intro p { max-width: 520px; }
}

@media (max-width: 620px) {
  .site-header { height: 72px; padding-inline: 5vw; }
  .brand-symbol { height: 34px; width: 34px; }
  .brand-name { font-size: 12px; }
  .hero { gap: 80px; padding: 115px 6vw 105px; }
  .status-pill { margin-bottom: 27px; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5.4rem); }
  .hero-description { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-tags { gap: 12px 19px; }
  .hero-visual { transform: rotate(1deg); width: 94%; }
  .browser-frame { padding: 5px; }
  .server-screen { min-height: 380px; padding: 19px; }
  .server-nav div { display: none; }
  .server-copy { left: 7%; top: 27%; }
  .server-copy h2 { font-size: 2.75rem; }
  .server-copy p { max-width: 180px; }
  .city { width: 58%; }
  .server-status-card { left: -18px; padding: 12px; top: 8%; transform: scale(0.82); transform-origin: left top; }
  .discord-card { bottom: 5%; right: -20px; transform: scale(0.78); transform-origin: right bottom; }
  .section { padding: 100px 6vw; }
  .section-index { font-size: 6px; }
  .section-title { margin: 55px 0; }
  .section-title > p { font-size: 13px; }
  .section-title h2,
  .process-intro h2 { font-size: clamp(3.3rem, 17vw, 5.2rem); }
  .solution-card { min-height: 510px; }
  .mission { padding: 85px 6vw; }
  .mission-copy h2 { font-size: 2.9rem; }
  .mission-console { min-width: 0; padding: 20px; width: 100%; }
  .projects-title { flex-direction: column-reverse; }
  .project-tag { left: 13px; top: 13px; }
  .project-number { bottom: 13px; right: 13px; }
  .corteiz-play { bottom: 10px; left: 13px; }
  .corteiz-play span { display: none; }
  .corteiz-details { margin-top: 65px; padding-bottom: 50px; }
  .corteiz-details-copy h3 { font-size: clamp(2.6rem, 13vw, 4.3rem); }
  .project-caption { align-items: flex-start; }
  .project-caption > b { display: none; }
  .process-step { gap: 20px; grid-template-columns: 28px 1fr auto; min-height: 210px; padding-block: 30px; }
  .process-step p { font-size: 11px; }
  .contact { min-height: 750px; padding: 55px 6vw 80px; }
  .contact-content { margin-top: 110px; }
  .contact-content h2 { font-size: clamp(3.5rem, 18vw, 6rem); }
  .contact-meta { display: none; }
  .footer-top { gap: 35px; grid-template-columns: 1fr; padding-bottom: 45px; }
  .footer-top > p { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom p { line-height: 1.5; }
}

@media (pointer: coarse) {
  .cursor-aura,
  .cursor-core { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-aura,
  .cursor-core { display: none; }
}
