:root {
  --ink: #f8fff9;
  --text: #e3eee9;
  --muted: #b4c0ba;
  --deep: #08110d;
  --panel: rgba(13, 29, 25, 0.72);
  --panel-strong: rgba(18, 39, 34, 0.9);
  --line: rgba(206, 224, 214, 0.16);
  --mint: #66f2a3;
  --violet: #8f6bff;
  --gold: #ffd166;
  --dirt: #8a5a36;
  --dirt-dark: #49311f;
  --radius: 0.42rem;
  --cut-corners: polygon(0.55rem 0, 100% 0, 100% calc(100% - 0.55rem), calc(100% - 0.55rem) 100%, 0 100%, 0 0.55rem);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(102, 242, 163, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 242, 163, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(102, 242, 163, 0.2), transparent 25rem),
    radial-gradient(circle at 86% 18%, rgba(143, 107, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 58% 72%, rgba(105, 255, 173, 0.16), transparent 34rem),
    var(--deep);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 48%, transparent 56%),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.45) 100%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 45%;
  filter: blur(36px);
  opacity: 0.5;
  animation: drift 12s ease-in-out infinite alternate;
}

.ambient-one {
  top: 14%;
  left: -6rem;
  background: rgba(102, 242, 163, 0.3);
}

.ambient-two {
  right: -8rem;
  bottom: 10%;
  background: rgba(143, 107, 255, 0.26);
  animation-delay: -4s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(7, 18, 15, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.theme-toggle {
  min-height: 2.75rem;
  padding: 0.75rem 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--ink);
  border-color: rgba(102, 242, 163, 0.46);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: #07120f;
  background:
    linear-gradient(135deg, var(--mint), #8dffbf);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  box-shadow: 0 0 26px rgba(105, 255, 173, 0.35);
}

.nav {
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 0.62rem 0.85rem;
  border-radius: var(--radius);
}

.nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.header-cta,
.primary-btn,
.secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta::after,
.primary-btn::after,
.secondary-btn::after {
  content: "";
  position: absolute;
  right: 0.42rem;
  bottom: 0.38rem;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--dirt);
  box-shadow: -0.42rem 0 var(--gold), 0 -0.42rem var(--violet);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-cta:hover::after,
.primary-btn:hover::after,
.secondary-btn:hover::after {
  opacity: 0.8;
  transform: translate(-0.16rem, -0.16rem);
}

.header-cta,
.primary-btn {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
  box-shadow: 0 16px 40px rgba(102, 242, 163, 0.2);
}

.secondary-btn {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 242, 163, 0.55);
  box-shadow: 0 20px 48px rgba(102, 242, 163, 0.16);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.7rem);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem) 4rem;
}

.hero::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4rem;
  width: 12rem;
  height: 12rem;
  background:
    linear-gradient(135deg, rgba(102, 242, 163, 0.18), rgba(143, 107, 255, 0.08));
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  filter: blur(1px);
  opacity: 0.55;
}

.hero-copy,
.hero-lab,
.section,
.portal-section,
.split-section,
.showcase-section,
.contact-section,
footer {
  position: relative;
}

.hero-kicker,
.eyebrow,
.mini-label {
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(105, 255, 173, 0.12), 0 0 16px var(--mint);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

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

h1,
h2,
h3,
.portal-title {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1::first-line {
  color: var(--ink);
}

h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 46rem;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.72;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.45rem 0 0;
}

.skill-tags span {
  padding: 0.55rem 0.72rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 48rem;
}

.hero-metrics span {
  min-height: 6.4rem;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  backdrop-filter: blur(18px);
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.28rem;
}

.hero-lab {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  overflow: hidden;
  min-height: 41rem;
  padding: 1rem;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(105, 255, 173, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(105, 255, 173, 0.24);
  border-radius: var(--radius);
  clip-path: polygon(0.85rem 0, 100% 0, 100% calc(100% - 0.85rem), calc(100% - 0.85rem) 100%, 0 100%, 0 0.85rem);
  box-shadow: var(--shadow), 0 0 70px rgba(143, 107, 255, 0.13);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 180ms ease;
  backdrop-filter: blur(24px);
}

.hero-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(rgba(105, 255, 173, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 255, 173, 0.055) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.lab-orbit {
  position: absolute;
  border: 1px solid rgba(105, 255, 173, 0.26);
  border-radius: 50%;
  pointer-events: none;
  animation: spin 16s linear infinite;
}

.lab-orbit-one {
  right: -5rem;
  top: 6rem;
  width: 18rem;
  height: 18rem;
}

.lab-orbit-two {
  left: -7rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  animation-direction: reverse;
}

.lab-header,
.lab-tabs,
.lab-stage,
.activity-feed {
  position: relative;
  z-index: 2;
}

.lab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  background: rgba(7, 18, 15, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lab-header div:first-child {
  display: grid;
  gap: 0.25rem;
}

.lab-header strong {
  font-size: 1.05rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.68rem;
  color: #07120f;
  background: var(--mint);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-size: 0.82rem;
  font-weight: 900;
}

.live-pill span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #07120f;
}

.lab-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}

.lab-tab {
  display: grid;
  gap: 0.12rem;
  align-content: center;
  min-height: 3rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lab-tab small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lab-tab.active {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
  box-shadow: 0 16px 36px rgba(102, 242, 163, 0.18);
}

.lab-tab.active small {
  color: rgba(7, 18, 15, 0.64);
}

.lab-stage {
  min-height: 25rem;
  perspective: 900px;
}

.lab-panel {
  display: none;
  min-height: 25rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(143, 107, 255, 0.16), transparent 17rem),
    rgba(7, 18, 15, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lab-panel.active {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  animation: panelIn 280ms ease;
}

.web-mockup {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-height: 15rem;
  padding: 1rem;
  background: linear-gradient(145deg, #f7fff8, #bfeadb);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  box-shadow: inset -18px -22px 0 rgba(7, 18, 15, 0.08);
}

.mock-nav,
.mock-hero,
.mock-row span,
.mock-cta {
  border-radius: 0.22rem;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.1rem;
  padding: 0.45rem 0.65rem;
  color: #f8fff9;
  background: #07120f;
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-hero {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-height: 6.4rem;
  padding: 1rem;
  color: #f8fff9;
  background:
    linear-gradient(135deg, #07120f 0 64%, var(--mint) 64% 100%);
}

.mock-hero strong {
  max-width: 11rem;
  font-size: 1.25rem;
  line-height: 1;
}

.mock-hero small {
  max-width: 13rem;
  color: rgba(248, 255, 249, 0.7);
  font-weight: 800;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.mock-row span {
  display: grid;
  min-height: 4rem;
  place-items: center;
  color: rgba(7, 18, 15, 0.74);
  min-height: 4rem;
  background: rgba(7, 18, 15, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
}

.mock-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.45rem 0.72rem;
  color: #f8fff9;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-world,
.brand-system {
  min-height: 15rem;
}

.mini-world {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
  align-items: end;
  padding: 1rem;
}

.cube {
  position: relative;
  min-height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.08rem;
  box-shadow: inset -12px -14px 0 rgba(0, 0, 0, 0.22), 0 20px 42px rgba(0, 0, 0, 0.26);
  animation: cubeFloat 2.6s ease-in-out infinite alternate;
}

.cube::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -2.1rem;
  translate: -50% 0;
  padding: 0.28rem 0.42rem;
  color: var(--text);
  background: rgba(7, 18, 15, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.cube:nth-child(2) {
  animation-delay: -0.4s;
}

.cube:nth-child(3) {
  animation-delay: -0.8s;
}

.cube:nth-child(4) {
  animation-delay: -1.2s;
}

.cube:nth-child(5) {
  animation-delay: -1.6s;
}

.cube:nth-child(6) {
  animation-delay: -2s;
}

.brand-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-content: center;
}

.brand-system span,
.brand-system div {
  position: relative;
  display: grid;
  min-height: 6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  background: rgba(255, 255, 255, 0.08);
}

.brand-logo {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
  font-weight: 900;
}

.brand-logo {
  font-size: 4rem;
}

.brand-logo small,
.brand-system div::after {
  position: absolute;
  left: 0.7rem;
  bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo small {
  color: rgba(7, 18, 15, 0.72);
}

.brand-system div::after {
  content: attr(data-label);
  color: var(--text);
}

.brand-system div:nth-child(2) {
  background: linear-gradient(135deg, var(--violet), transparent);
}

.brand-system div:nth-child(3) {
  background: linear-gradient(135deg, var(--gold), transparent);
}

.brand-system div:nth-child(4) {
  background: linear-gradient(135deg, var(--gold), transparent);
}

.panel-copy {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.activity-feed {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.activity-feed span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 0.85rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.activity-feed strong {
  color: var(--mint);
}

.mini-label {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(1rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  background: var(--line);
}

.signal-strip span {
  display: grid;
  min-height: 4.6rem;
  place-items: center;
  padding: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  text-align: center;
}

.section,
.portal-section,
.split-section,
.showcase-section,
.contact-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 4vw, 4rem);
}

.section::before,
.proof-section::before,
.showcase-section::before,
.split-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: clamp(1rem, 4vw, 4rem);
  width: 4.2rem;
  height: 0.7rem;
  background:
    linear-gradient(90deg, var(--mint) 0 31%, transparent 31% 37%, var(--violet) 37% 68%, transparent 68% 74%, var(--gold) 74% 100%);
  box-shadow: 0 0 24px rgba(102, 242, 163, 0.14);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.service-card,
.proof-card,
.plan,
.contact-card,
.auth-card,
.locked-preview,
.dashboard-preview,
.minecraft-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.service-card,
.proof-card,
.plan,
.auth-card,
.contact-card {
  padding: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 15.5rem;
  background:
    linear-gradient(145deg, rgba(102, 242, 163, 0.08), rgba(255, 255, 255, 0.035));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::after,
.proof-card::after,
.plan::after,
.contact-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(180deg, var(--mint) 0 34%, var(--dirt) 34% 100%);
  box-shadow: -1rem 0 var(--violet), 0 -1rem var(--gold);
  opacity: 0.28;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 242, 163, 0.42);
  background:
    linear-gradient(145deg, rgba(102, 242, 163, 0.14), rgba(255, 255, 255, 0.06));
}

.service-card p,
.proof-card p,
.plan p,
.auth-card p,
.dashboard-preview p,
.split-section p,
.showcase-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.68;
}

.portal-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
  gap: 1rem;
}

.portal-page {
  min-height: 100vh;
}

.portal-minimal {
  color: var(--ink);
  background:
    linear-gradient(rgba(102, 242, 163, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 242, 163, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(143, 107, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 10% 20%, rgba(102, 242, 163, 0.1), transparent 22rem),
    #090d14;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.portal-minimal::before {
  display: none;
}

.portal-minimal-header {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.portal-minimal .brand-mark {
  color: #f7f8fb;
  background: #111827;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.minimal-link {
  color: var(--muted);
  font-weight: 800;
}

.minimal-link:hover {
  color: var(--ink);
}

.portal-app {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 4rem) 4rem;
}

.access-only {
  display: grid;
  min-height: calc(100vh - 6rem);
  place-items: center;
  padding: 2rem 1rem;
}

.portal-app .portal-shell {
  grid-template-columns: minmax(19rem, 0.35fr) minmax(0, 0.65fr);
}

.portal-hero {
  max-width: 70rem;
  margin-bottom: 2rem;
}

.portal-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.portal-hero p {
  max-width: 52rem;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.7;
}

.portal-hero.compact h1 {
  max-width: 16ch;
}

.auth-screen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: min(100%, 20rem);
}

.flash {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(105, 255, 173, 0.12);
  border: 1px solid rgba(105, 255, 173, 0.35);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-weight: 800;
}

.flash.error {
  background: rgba(255, 209, 102, 0.14);
  border-color: rgba(255, 209, 102, 0.4);
}

.portal-logo {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  margin: 0 auto 0.35rem;
  color: #090d14;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  box-shadow: 0 18px 40px rgba(102, 242, 163, 0.2);
  font-weight: 900;
}

.portal-title {
  max-width: none;
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.auth-card {
  align-self: start;
}

.portal-minimal .auth-card {
  background: rgba(13, 19, 31, 0.86);
  border-color: rgba(210, 222, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.portal-minimal .mini-label,
.portal-minimal .eyebrow {
  color: var(--mint);
}

.portal-minimal .secondary-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 222, 255, 0.16);
}

.portal-minimal .primary-btn {
  min-height: 2.45rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(102, 242, 163, 0.2);
}

.primary-auth {
  padding: 1rem;
}

.primary-auth h1 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.primary-auth p,
.register-auth p {
  color: var(--muted);
}

.register-auth {
  padding: 1rem;
  text-align: center;
}

.register-auth p {
  margin-bottom: 0;
}

.register-auth details {
  margin-top: 0.45rem;
}

.register-auth summary {
  color: var(--mint);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.register-auth summary::-webkit-details-marker {
  display: none;
}

.portal-back {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.portal-theme-toggle {
  justify-self: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
}

.auth-form {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.auth-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}

.auth-form input,
.ticket-form input,
.ticket-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: rgba(4, 8, 14, 0.74);
  border: 1px solid rgba(210, 222, 255, 0.16);
  border-radius: 0.38rem;
  font: inherit;
  outline: none;
}

.auth-form input::placeholder,
.ticket-form input::placeholder,
.ticket-form textarea::placeholder {
  color: #c4cedd;
  opacity: 1;
}

.auth-form input:focus,
.ticket-form input:focus,
.ticket-form textarea:focus {
  border-color: rgba(102, 242, 163, 0.68);
  box-shadow: 0 0 0 3px rgba(102, 242, 163, 0.14);
}

.ticket-form {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.ticket-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 900;
}

.ticket-form textarea {
  resize: vertical;
}

.role-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.role-btn {
  min-height: 2.8rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.role-btn.active {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.dashboard-preview {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.project-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.project-links a {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.project-links a.active {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.project-links span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.project-links a.active span {
  color: rgba(7, 18, 15, 0.66);
}

.locked-preview {
  display: grid;
  align-content: center;
  min-height: 28rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.locked-preview h3 {
  max-width: 16rem;
  margin-inline: auto;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.locked-preview p {
  max-width: 30rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.is-hidden {
  display: none;
}

.dashboard-top,
.progress-card,
.ticket-panel,
.dashboard-grid article {
  background: rgba(7, 18, 15, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.dashboard-top,
.progress-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dashboard-top h3,
.ticket-head h3 {
  margin-bottom: 0;
}

.project-status {
  padding: 0.48rem 0.68rem;
  color: #07120f;
  background: var(--gold);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-size: 0.78rem;
  font-weight: 900;
}

.progress-card {
  display: grid;
}

.progress-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-weight: 900;
}

.progress-number {
  color: var(--mint);
}

.progress-track {
  overflow: hidden;
  height: 0.78rem;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 0.18rem;
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--violet));
  border-radius: inherit;
  transition: width 220ms ease;
}

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

.dashboard-grid article {
  padding: 1rem;
}

.dashboard-grid strong {
  display: block;
  margin: 0.25rem 0 0.55rem;
  color: var(--ink);
}

.ticket-panel {
  padding: 1rem;
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.small-btn {
  min-height: 2.3rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
}

.ticket-list {
  display: grid;
  gap: 0.55rem;
}

.ticket-list span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.78rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.ticket-list strong {
  color: var(--mint);
}

.ticket-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 4vw, 4rem);
}

.proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 16rem;
}

.proof-card.creator {
  background:
    linear-gradient(145deg, rgba(143, 107, 255, 0.2), rgba(102, 242, 163, 0.07)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(143, 107, 255, 0.34);
}

.service-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--mint);
  font-weight: 900;
}

.card-result {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 0.48rem 0.68rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(105, 255, 173, 0.28);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-size: 0.78rem;
  font-weight: 900;
}

.card-icon {
  position: relative;
  display: inline-grid;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.4rem;
  background: linear-gradient(180deg, var(--mint) 0 34%, var(--dirt) 34% 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.08rem;
  box-shadow: inset -8px -9px 0 rgba(0, 0, 0, 0.18), 0 16px 28px rgba(0, 0, 0, 0.2);
}

.card-icon i {
  position: absolute;
  inset: 0.72rem;
  display: block;
  border: 2px solid rgba(7, 18, 15, 0.55);
  border-top: 0;
}

.block-web i {
  border-radius: 0.08rem;
}

.block-server {
  background: linear-gradient(135deg, var(--violet), #2b174a);
  box-shadow: inset -8px -9px 0 rgba(0, 0, 0, 0.24), 0 0 28px rgba(143, 107, 255, 0.32);
}

.block-server i {
  inset: 0.62rem 1rem;
  border-color: rgba(255, 255, 255, 0.45);
}

.block-creator {
  background: linear-gradient(135deg, var(--gold), #8f621b);
}

.block-creator i {
  inset: 0.78rem 0.58rem;
  border-color: rgba(7, 18, 15, 0.48);
  transform: skewX(-10deg);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.minecraft-panel {
  overflow: hidden;
  padding: 1rem;
  border-color: rgba(143, 107, 255, 0.28);
}

.panel-top,
.panel-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.panel-top {
  padding: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--mint);
}

.voxel-world {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  min-height: 18rem;
  align-items: end;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(143, 107, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.24));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.node-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 3rem);
  gap: 0.5rem;
  min-height: 18rem;
  padding: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(143, 107, 255, 0.24), transparent 14rem),
    radial-gradient(circle at 72% 62%, rgba(102, 242, 163, 0.14), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.24));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
}

.node-map::before,
.node-map::after {
  content: "";
  position: absolute;
  inset: 3.1rem 4.5rem;
  border: 1px solid rgba(105, 255, 173, 0.2);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.node-map::after {
  inset: 5rem 2.4rem;
  border-color: rgba(143, 107, 255, 0.18);
  transform: rotate(18deg);
}

.node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 5rem;
  padding: 0.75rem;
  color: var(--ink);
  background: rgba(8, 19, 26, 0.78);
  border: 1px solid rgba(210, 222, 255, 0.18);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
}

.node.core {
  grid-column: 5 / 9;
  grid-row: 3 / 5;
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.node-a {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.node-b {
  grid-column: 9 / 12;
  grid-row: 1 / 3;
}

.node-c {
  grid-column: 2 / 5;
  grid-row: 5 / 7;
}

.node-d {
  grid-column: 9 / 13;
  grid-row: 5 / 7;
}

.node-e {
  grid-column: 5 / 9;
  grid-row: 1 / 2;
}

.block {
  display: block;
  min-height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.18rem;
  box-shadow: inset -10px -12px 0 rgba(0, 0, 0, 0.18), 0 18px 38px rgba(0, 0, 0, 0.24);
}

.grass {
  background: linear-gradient(180deg, var(--mint) 0 25%, #8a5a36 25% 100%);
}

.grass.tall {
  min-height: 8rem;
}

.stone {
  min-height: 6.5rem;
  background: linear-gradient(135deg, #b6c2bc, #52615b);
}

.gold {
  min-height: 9rem;
  background: linear-gradient(135deg, var(--gold), #9f6b15);
}

.portal {
  min-height: 12rem;
  background: linear-gradient(135deg, var(--violet), #22133f);
  box-shadow: inset -10px -12px 0 rgba(0, 0, 0, 0.18), 0 0 32px rgba(143, 107, 255, 0.42);
}

.dirt {
  min-height: 4.2rem;
  background: linear-gradient(135deg, #94623e, #3e281c);
}

.panel-stats {
  padding: 1rem 0.5rem 0.2rem;
}

.panel-stats span {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-stats strong {
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(102, 242, 163, 0.08), rgba(143, 107, 255, 0.06)),
    rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.split-section p,
.steps span {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  background: rgba(255, 255, 255, 0.06);
}

.plan {
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%);
}

.featured {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(102, 242, 163, 0.18), rgba(143, 107, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(105, 255, 173, 0.5);
  transform: translateY(-0.8rem) scale(1.02);
}

.featured p,
.featured li {
  color: var(--text);
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  color: #07120f;
  background: var(--mint);
  border-radius: var(--radius);
  clip-path: var(--cut-corners);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  color: var(--mint);
  font-size: 1.45rem;
  font-weight: 900;
}

.plan ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: 2rem;
  align-items: center;
}

.contact-card h3 {
  margin-bottom: 1.2rem;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.wide {
  width: 100%;
  margin-bottom: 0.8rem;
}

.note {
  margin: 0;
  font-size: 0.9rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer a:hover {
  color: var(--mint);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(2rem, -1.5rem, 0) rotate(18deg);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .showcase-section,
  .portal-shell,
  .auth-screen,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-lab {
    transform: none;
  }

  .hero-metrics,
  .service-grid,
  .proof-grid,
  .dashboard-grid,
  .plan-grid,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .portal-minimal-header {
    display: grid;
    gap: 1rem;
  }

  .access-only {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand span:last-child {
    max-width: 9rem;
  }

  .header-cta {
    min-height: 2.65rem;
    padding: 0.7rem 0.9rem;
  }

  h1 {
    font-size: 3.08rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-lab {
    min-height: auto;
    padding: 0.75rem;
  }

  .lab-header {
    align-items: flex-start;
  }

  .lab-tabs,
  .mock-row,
  .brand-system {
    grid-template-columns: 1fr;
  }

  .lab-stage,
  .lab-panel,
  .mini-world,
  .mini-world,
  .brand-system,
  .web-mockup {
    min-height: auto;
  }

  .mini-world {
    grid-template-columns: repeat(3, 1fr);
  }

  .voxel-world {
    grid-template-columns: repeat(3, 1fr);
    min-height: 16rem;
    padding: 1rem;
  }

  .node-map {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .node,
  .node.core,
  .node-a,
  .node-b,
  .node-c,
  .node-d,
  .node-e {
    grid-column: auto;
    grid-row: auto;
  }

  .panel-stats,
  .dashboard-top,
  .dashboard-actions,
  .ticket-head,
  .ticket-list span,
  footer {
    display: grid;
  }
}

.theme-light {
  --ink: #17211d;
  --text: #33413c;
  --muted: #5d6b65;
  --deep: #f6f8f7;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(23, 33, 29, 0.12);
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 33, 29, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(102, 242, 163, 0.12), transparent 25rem),
    radial-gradient(circle at 86% 18%, rgba(143, 107, 255, 0.1), transparent 28rem),
    #f6f8f7;
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.theme-light::before {
  opacity: 0.25;
  mix-blend-mode: normal;
}

.theme-light .site-header {
  background: rgba(246, 248, 247, 0.82);
  border-bottom-color: rgba(23, 33, 29, 0.1);
}

.theme-light .nav,
.theme-light .theme-toggle,
.theme-light .secondary-btn,
.theme-light .hero-kicker,
.theme-light .skill-tags span,
.theme-light .hero-metrics span,
.theme-light .signal-strip span,
.theme-light .steps li,
.theme-light .activity-feed span {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 33, 29, 0.12);
}

.theme-light .brand-mark,
.theme-light .card-icon,
.theme-light .lab-tab.active,
.theme-light .project-links a.active {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.theme-light .header-cta,
.theme-light .primary-btn {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.theme-light .hero-lab,
.theme-light .service-card,
.theme-light .proof-card,
.theme-light .plan,
.theme-light .contact-card,
.theme-light .auth-card,
.theme-light .locked-preview,
.theme-light .dashboard-preview,
.theme-light .minecraft-panel {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 33, 29, 0.12);
  box-shadow: 0 22px 70px rgba(23, 33, 29, 0.12);
}

.theme-light .split-section {
  background:
    linear-gradient(135deg, rgba(102, 242, 163, 0.08), rgba(143, 107, 255, 0.05)),
    rgba(255, 255, 255, 0.6);
}

.theme-light .dashboard-top,
.theme-light .progress-card,
.theme-light .ticket-panel,
.theme-light .dashboard-grid article,
.theme-light .panel-copy,
.theme-light .ticket-form,
.theme-light .project-links a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 33, 29, 0.12);
}

.theme-light .card-result {
  color: #24342f;
  background: rgba(102, 242, 163, 0.12);
  border-color: rgba(23, 33, 29, 0.14);
}

.theme-light .node-map {
  background:
    radial-gradient(circle at 30% 40%, rgba(143, 107, 255, 0.16), transparent 14rem),
    radial-gradient(circle at 72% 62%, rgba(102, 242, 163, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 33, 29, 0.12);
}

.theme-light .node {
  color: #24342f;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(23, 33, 29, 0.12);
}

.theme-light .node.core {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.theme-light .card-icon {
  color: #07120f;
  background: linear-gradient(180deg, var(--mint) 0 34%, var(--dirt) 34% 100%);
}

.theme-light .block-server {
  background: linear-gradient(135deg, var(--violet), #2b174a);
}

.theme-light .block-creator {
  background: linear-gradient(135deg, var(--gold), #8f621b);
}

.theme-light .auth-form input,
.theme-light .ticket-form input,
.theme-light .ticket-form textarea {
  color: #24292f;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(23, 33, 29, 0.18);
}

.theme-light .auth-form input::placeholder,
.theme-light .ticket-form input::placeholder,
.theme-light .ticket-form textarea::placeholder {
  color: #57606a;
}

.theme-light .lab-panel {
  background:
    radial-gradient(circle at 50% 30%, rgba(36, 119, 216, 0.12), transparent 17rem),
    rgba(255, 255, 255, 0.72);
}

.theme-light .panel-copy p,
.theme-light .dashboard-preview p,
.theme-light .auth-card p,
.theme-light .contact-section p,
.theme-light .showcase-section p,
.theme-light .split-section p,
.theme-light .steps span,
.theme-light .plan p,
.theme-light .proof-card p,
.theme-light .service-card p {
  color: var(--muted);
}

.theme-light .portal-minimal,
.portal-minimal.theme-light {
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 33, 29, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(102, 242, 163, 0.1), transparent 28rem),
    #f6f8fa;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.portal-minimal.theme-light .auth-card {
  background: #ffffff;
  border-color: #d0d7de;
  box-shadow: 0 18px 55px rgba(23, 33, 29, 0.08);
}

.portal-minimal.theme-light .portal-title,
.portal-minimal.theme-light .auth-form label {
  color: #24292f;
}

.portal-minimal.theme-light .auth-form input {
  color: #24292f;
  background: #ffffff;
  border-color: #d0d7de;
}

.portal-minimal.theme-light .portal-logo {
  color: #07120f;
  background: linear-gradient(135deg, var(--mint), #8dffbf);
}

.portal-minimal.theme-light .portal-back,
.portal-minimal.theme-light .register-auth p {
  color: #57606a;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px) rotateX(-6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes cubeFloat {
  to {
    transform: translateY(-10px);
  }
}
