:root {
  --bg: #05060c;
  --bg2: #080a14;
  --cyan: #5ef0ff;
  --violet: #7c5cff;
  --indigo: #4d6bff;
  --pink: #ff5ea8;
  --text: #eef1fa;
  --muted: rgba(238, 241, 250, .64);
  --line: rgba(238, 241, 250, .10);
  --focus: #5ef0ff;
  --glass: rgba(255, 255, 255, .035);
  --display: 'Sora', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'Space Mono', monospace;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.cursor-custom {
  cursor: none;
}
body.cursor-custom a,
body.cursor-custom button,
body.cursor-custom [data-hover] {
  cursor: none;
}
body.cursor-custom input,
body.cursor-custom textarea,
body.cursor-custom select {
  cursor: auto;
}
@media (max-width: 860px) {
  body {
    cursor: auto;
  }
}
#scene {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(closest-side at 18% 18%, rgba(124, 92, 255, .2), transparent 70%), radial-gradient(closest-side at 85% 32%, rgba(94, 240, 255, .14), transparent 70%), radial-gradient(closest-side at 50% 100%, rgba(255, 94, 168, .1), transparent 70%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 320px 60px rgba(0, 0, 0, .9);
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--cyan);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(94, 240, 255, .55);
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-ring.hover {
  width: 64px;
  height: 64px;
  border-color: rgba(124, 92, 255, .8);
  background: rgba(124, 92, 255, .06);
}
@media (max-width: 860px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
.wrap {
  position: relative;
  z-index: 5;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color .4s ease, border-color .4s ease;
}
nav.scrolled {
  background: rgba(5, 6, 12, .6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}
.logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform .3s ease;
}
.logo:hover img {
  transform: scale(1.15) rotate(5deg);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .25s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .3s ease;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 10px 22px;
  border: 1px solid rgba(94, 240, 255, .4);
  border-radius: 40px;
  color: var(--cyan) !important;
  background: rgba(94, 240, 255, .05);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: rgba(94, 240, 255, .15);
  box-shadow: 0 0 26px rgba(94, 240, 255, .35);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(5, 6, 12, .97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .4s ease;
    font-size: 1.35rem;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .burger {
    display: flex;
    z-index: 110;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.dual-badge {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.dual-badge span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--muted);
  background: var(--glass);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.02em;
  margin: 20px 0 22px;
}
.hero h1 .grad {
  background: linear-gradient(110deg, var(--cyan), var(--violet) 55%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 32px;
  border-radius: 46px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) {
  .btn {
    cursor: pointer;
  }
}
.btn-primary {
  color: #04050a;
  background: linear-gradient(110deg, var(--cyan), var(--violet));
  box-shadow: 0 0 30px rgba(94, 240, 255, .35);
}
.btn-primary:hover {
  box-shadow: 0 0 44px rgba(124, 92, 255, .6);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(94, 240, 255, .5);
  background: rgba(94, 240, 255, .06);
}
.btn .arrow {
  transition: transform .3s;
}
.btn:hover .arrow {
  transform: translateX(5px);
}
.holo-panel {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-14px);
  }
}
.holo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(94, 240, 255, .5), transparent 40%, transparent 60%, rgba(124, 92, 255, .4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.panel-head .dot-row {
  display: flex;
  gap: 7px;
}
.panel-head .dot-row i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: block;
}
.panel-head .dot-row i:first-child {
  background: var(--pink);
}
.panel-head .label {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .18em;
}
.metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.metric:last-child {
  border-bottom: none;
}
.metric .k {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .06em;
}
.metric .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
}
.metric .v small {
  font-size: .85rem;
  color: var(--cyan);
  font-weight: 600;
}
.bar {
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .07);
  margin-top: 7px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint .line {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--cyan), transparent);
  animation: drop 2s infinite;
}
@keyframes drop {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
.sec-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 18px 0 18px;
}
.sec-head p {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 300;
}
.section-pad {
  padding: 130px 0;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 860px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
.pillar {
  position: relative;
  padding: 40px 34px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  border-radius: 26px 26px 0 0;
}
.pillar.coach::before {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.pillar.dev::before {
  background: linear-gradient(90deg, var(--violet), var(--pink));
}
.pillar .tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.pillar.dev .tag {
  color: var(--pink);
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  margin: 14px 0 12px;
}
.pillar p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 24px;
}
.pillar ul {
  list-style: none;
}
.pillar li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
  color: rgba(238, 241, 250, .82);
}
.pillar li:last-child {
  border-bottom: none;
}
.pillar li b {
  font-weight: 600;
  color: var(--text);
}
.pillar li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}
.pillar.dev li svg {
  stroke: var(--pink);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  position: relative;
  padding: 30px 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  backdrop-filter: blur(14px);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), border-color .4s;
  transform-style: preserve-3d;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, .22), transparent 65%);
  top: var(--my, 50%);
  left: var(--mx, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover {
  border-color: rgba(94, 240, 255, .35);
}
.card:hover::after {
  opacity: 1;
}
.card .icn {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(150deg, rgba(94, 240, 255, .16), rgba(124, 92, 255, .16));
  border: 1px solid var(--line);
}
.card .icn svg {
  width: 23px;
  height: 23px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.6;
}
.card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 300;
}
.card .num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--mono);
  font-size: .72rem;
  color: rgba(238, 241, 250, .25);
}
a.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
a.card h3 {
  color: var(--text);
}
.demo-open {
  margin-top: 16px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle {
  margin-left: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.lang-toggle:hover {
  border-color: rgba(94, 240, 255, .5);
  background: rgba(94, 240, 255, .08);
}
.dept-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--cyan);
  border: 1px solid rgba(94, 240, 255, .3);
  border-radius: 30px;
  padding: 7px 14px;
  margin-bottom: 14px;
}
.dept-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .dept-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }
}
.dept {
  position: relative;
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01));
  backdrop-filter: blur(12px);
  transition: transform .35s ease, border-color .35s ease;
  overflow: hidden;
}
.dept:hover {
  border-color: rgba(124, 92, 255, .4);
  transform: translateY(-4px);
}
.dept .dh {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.dept .dh .di {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(94, 240, 255, .14), rgba(124, 92, 255, .14));
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.dept .dh .di svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.6;
}
.dept .dh h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
}
.dept ul {
  list-style: none;
}
.dept li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: rgba(238, 241, 250, .78);
  padding: 8px 0;
  border-bottom: 1px solid rgba(238, 241, 250, .06);
}
.dept li:last-child {
  border-bottom: none;
}
.dept li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  stroke: var(--violet);
  fill: none;
  stroke-width: 2;
}
.cloud {
  position: relative;
  padding: 54px 46px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(77, 107, 255, .1), rgba(94, 240, 255, .05));
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.cloud-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .8fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 1040px) {
  .cloud-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .cloud-visual {
    grid-column: span 2;
    height: 300px;
  }
}
@media (max-width: 860px) {
  .cloud-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .cloud-visual {
    grid-column: span 1;
    height: 220px;
  }
}
.cloud h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  letter-spacing: -.01em;
  line-height: 1.12;
  margin: 16px 0 16px;
}
.cloud p {
  color: var(--muted);
  font-weight: 300;
}
.cloud-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
}
.cloud-options .opt {
  font-family: var(--mono);
  font-size: .74rem;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}
.cloud-options .opt.lead {
  border-color: rgba(94, 240, 255, .45);
  color: var(--cyan);
  background: rgba(94, 240, 255, .06);
}
.cloud-pts {
  display: grid;
  gap: 14px;
}
.cloud-pts .pt {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
}
.cloud-pts .pt svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.7;
  margin-top: 2px;
}
.cloud-pts .pt b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cloud-pts .pt span {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
}
.cloud-visual {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  transition: transform .3s ease, border-color .3s ease;
}
.cloud-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cloud-visual:hover {
  transform: scale(1.02);
  border-color: var(--cyan);
}
.showcase-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.showcase-tabs button {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  padding: 11px 20px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--muted);
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  backdrop-filter: blur(10px);
}
@media (max-width: 860px) {
  .showcase-tabs button {
    cursor: pointer;
  }
}
.showcase-tabs button.active {
  color: #04050a;
  background: linear-gradient(110deg, var(--cyan), var(--violet));
  border-color: transparent;
  box-shadow: 0 0 24px rgba(94, 240, 255, .3);
}
.showcase-tabs button:not(.active):hover {
  color: var(--text);
  border-color: rgba(94, 240, 255, .4);
}
.mock-stage {
  position: relative;
}
.mock {
  display: none;
  animation: mockIn .55s cubic-bezier(.2, .7, .2, 1);
}
.mock.active {
  display: block;
}
@keyframes mockIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.99);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.mock-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.mock-meta h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
}
.mock-meta p {
  color: var(--muted);
  font-weight: 300;
  font-size: .95rem;
  max-width: 560px;
  margin-top: 4px;
}
.mock-meta .stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mock-meta .stack span {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .06em;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--muted);
}
/* Live-Demo Verlinkung */
.demo-link {
  margin-top: 14px;
  font-size: .84rem;
  padding: 11px 20px;
}
.demo-band {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  margin-bottom: 30px;
  border-radius: 18px;
  border: 1px solid rgba(94, 240, 255, .25);
  background: linear-gradient(120deg, rgba(94, 240, 255, .08), rgba(124, 92, 255, .06));
  backdrop-filter: blur(12px);
}
.demo-band .db-ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(94, 240, 255, .2), rgba(124, 92, 255, .2));
  border: 1px solid var(--line);
}
.demo-band .db-ic svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.7;
}
.demo-band .db-txt {
  flex: 1;
  min-width: 200px;
}
.demo-band .db-txt b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.demo-band .db-txt span {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
}
@media (max-width: 560px) {
  .demo-band .btn {
    width: 100%;
    justify-content: center;
  }
}
.frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .55);
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(10, 12, 20, .9);
  border-bottom: 1px solid var(--line);
}
.frame-bar .lights {
  display: flex;
  gap: 6px;
}
.frame-bar .lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.frame-bar .lights i:nth-child(1) {
  background: #ff5f57;
}
.frame-bar .lights i:nth-child(2) {
  background: #febc2e;
}
.frame-bar .lights i:nth-child(3) {
  background: #28c840;
}
.frame-bar .url {
  flex: 1;
  margin-left: 10px;
  font-family: var(--mono);
  font-size: .72rem;
  color: rgba(238, 241, 250, .5);
  background: rgba(255, 255, 255, .04);
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
}
.frame-body {
  min-height: 360px;
}
.mk-iot {
  font-family: 'Inter', sans-serif;
  background: #0a0e14;
  padding: 22px;
  color: #cfe3f0;
}
.mk-iot .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.mk-iot .top h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #eafff6;
}
.mk-iot .live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: .68rem;
  color: #5cff9d;
  letter-spacing: .12em;
}
.mk-iot .live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cff9d;
  box-shadow: 0 0 10px #5cff9d;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  50% {
    opacity: .3;
  }
}
.mk-iot .kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .mk-iot .kpis {
    grid-template-columns: 1fr 1fr;
  }
}
.mk-iot .kpi {
  background: #10161f;
  border: 1px solid #1b2533;
  border-radius: 10px;
  padding: 14px;
}
.mk-iot .kpi .lbl {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #5d7286;
}
.mk-iot .kpi .val {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  color: #eafff6;
}
.mk-iot .kpi .val span {
  font-size: .8rem;
  color: #5cd8ff;
}
.mk-iot .kpi .st {
  display: inline-block;
  margin-top: 8px;
  font-size: .62rem;
  padding: 3px 8px;
  border-radius: 20px;
}
.mk-iot .st.ok {
  background: rgba(92, 255, 157, .12);
  color: #5cff9d;
}
.mk-iot .st.warn {
  background: rgba(255, 200, 80, .14);
  color: #ffcc55;
}
.mk-iot .chart {
  background: #10161f;
  border: 1px solid #1b2533;
  border-radius: 10px;
  padding: 14px;
}
.mk-iot .chart .ch-top {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: #5d7286;
  margin-bottom: 8px;
}
.mk-iot svg.spark {
  width: 100%;
  height: 96px;
  display: block;
}
.mk-doc {
  font-family: 'Inter', sans-serif;
  background: #f4f1ea;
  color: #23211c;
  padding: 26px;
}
.mk-doc .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.mk-doc .top h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1814;
}
.mk-doc .badge {
  font-size: .7rem;
  padding: 6px 12px;
  border-radius: 20px;
  background: #e7e1d4;
  color: #6b6354;
}
.mk-doc .pipe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .mk-doc .pipe {
    grid-template-columns: 1fr 1fr;
  }
}
.mk-doc .stg {
  background: #fff;
  border: 1px solid #e6e0d2;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.mk-doc .stg .ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  background: #efe9da;
}
.mk-doc .stg .ic svg {
  width: 19px;
  height: 19px;
  stroke: #5a4eff;
  fill: none;
  stroke-width: 1.8;
}
.mk-doc .stg .nm {
  font-size: .82rem;
  font-weight: 600;
}
.mk-doc .stg .sub {
  font-size: .66rem;
  color: #9b9384;
  margin-top: 3px;
}
.mk-doc .stg.done .ic {
  background: #5a4eff;
}
.mk-doc .stg.done .ic svg {
  stroke: #fff;
}
.mk-doc .rows {
  background: #fff;
  border: 1px solid #e6e0d2;
  border-radius: 14px;
  overflow: hidden;
}
.mk-doc .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid #efe9da;
  font-size: .84rem;
}
.mk-doc .row:last-child {
  border-bottom: none;
}
.mk-doc .row .file {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mk-doc .row .file .dotf {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #5a4eff;
}
.mk-doc .chip {
  font-size: .64rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.mk-doc .chip.ok {
  background: #e3f6e9;
  color: #1f8a4c;
}
.mk-doc .chip.proc {
  background: #eceaff;
  color: #5a4eff;
}
.mk-crm {
  font-family: 'Sora', sans-serif;
  background: radial-gradient(120% 120% at 0% 0%, #1a1330, #0c0a18);
  color: #e9e6ff;
  padding: 24px;
}
.mk-crm .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.mk-crm .top h4 {
  font-weight: 600;
  font-size: 1.1rem;
}
.mk-crm .top .rev {
  font-family: var(--mono);
  font-size: .74rem;
  color: #c9b8ff;
}
.mk-crm .cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .mk-crm .cols {
    grid-template-columns: 1fr;
  }
}
.mk-crm .col {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px;
}
.mk-crm .col h5 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #a99bd6;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.mk-crm .col h5 b {
  color: #ff8fc7;
}
.mk-crm .deal {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 9px;
  padding: 10px 11px;
  margin-bottom: 8px;
  transition: transform .25s ease, border-color .25s ease;
}
.mk-crm .deal:hover {
  border-color: rgba(255, 143, 199, .5);
  transform: translateX(3px);
}
.mk-crm .deal .nm {
  font-size: .82rem;
  font-weight: 500;
}
.mk-crm .deal .am {
  font-family: var(--mono);
  font-size: .72rem;
  color: #7df0ff;
  margin-top: 3px;
}
.mk-crm .bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}
.mk-crm .bars .b {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #7c5cff, #5ef0ff);
  transition: height .8s cubic-bezier(.2, .7, .2, 1);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 46px 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(124, 92, 255, .08), rgba(94, 240, 255, .05));
  backdrop-filter: blur(16px);
}
@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }
}
.stat {
  text-align: center;
}
.stat .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .l {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
@media (max-width: 860px) {
  .process {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 34px 26px;
  border-left: 1px solid var(--line);
}
.step:first-child {
  border-left: none;
}
@media (max-width: 860px) {
  .step {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 30px 0;
  }
  .step:first-child {
    border-top: none;
  }
}
.step .idx {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--cyan);
  letter-spacing: .2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .idx .ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(94, 240, 255, .4);
  display: grid;
  place-items: center;
  font-size: .85rem;
  color: var(--text);
  background: rgba(94, 240, 255, .05);
}
.step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: .93rem;
  font-weight: 300;
}
.price-group-label {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .plans {
    grid-template-columns: 1fr;
  }
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01));
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 240, 255, .3);
}
.plan.featured {
  border-color: rgba(124, 92, 255, .5);
  background: linear-gradient(165deg, rgba(124, 92, 255, .12), rgba(94, 240, 255, .05));
  box-shadow: 0 24px 70px rgba(124, 92, 255, .18);
}
.plan .tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.plan.featured .tag {
  color: var(--pink);
}
.plan h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 14px 0 6px;
}
.plan .price {
  font-family: var(--display);
  font-weight: 300;
  font-size: 2.1rem;
  margin-bottom: 2px;
  line-height: 1.1;
}
.plan .price b {
  font-weight: 700;
}
.plan .price span {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 400;
}
.plan .sub-price {
  font-size: .82rem;
  color: var(--cyan);
  font-family: var(--mono);
  margin-bottom: 18px;
}
.plan .desc {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 300;
  margin-bottom: 22px;
}
.plan ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.plan li {
  font-size: .92rem;
  padding: 9px 0;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: rgba(238, 241, 250, .78);
  border-bottom: 1px solid var(--line);
}
.plan li:last-child {
  border-bottom: none;
}
.plan li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}
.plan .btn {
  width: 100%;
  justify-content: center;
}
.price-note {
  margin-top: 30px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 300;
}
.price-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.7;
  margin-top: 2px;
}
.price-note b {
  color: var(--text);
  font-weight: 600;
}
.cta {
  position: relative;
  padding: 90px 50px;
  border-radius: 32px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(124, 92, 255, .14), rgba(94, 240, 255, .07));
}
.cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 240, 255, .25), transparent 60%);
  top: -200px;
  left: -100px;
  filter: blur(20px);
}
.cta::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 168, .18), transparent 60%);
  bottom: -200px;
  right: -80px;
  filter: blur(20px);
}
.cta h2 {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.cta p {
  position: relative;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 34px;
  font-weight: 300;
  font-size: 1.08rem;
}
footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
  position: relative;
  z-index: 5;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.foot-grid p {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 300;
  max-width: 280px;
}
.foot-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  color: rgba(238, 241, 250, .72);
  text-decoration: none;
  font-size: .92rem;
  margin-bottom: 10px;
  transition: color .25s ease;
}
.foot-col a:hover {
  color: var(--cyan);
}
.foot-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .06em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: .08s;
}
.reveal.d2 {
  transition-delay: .16s;
}
.reveal.d3 {
  transition-delay: .24s;
}
.reveal.d4 {
  transition-delay: .32s;
}
.reveal.d5 {
  transition-delay: .4s;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 1000;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--cyan);
  color: #04050a;
  font-family: var(--body);
  font-weight: 700;
  text-decoration: none;
  transition: top .25s ease;
}
.skip-link:focus {
  top: 16px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
:focus:not(:focus-visible) {
  outline: none;
}
h1,
h2,
h3,
.sec-head h2 {
  text-wrap: balance;
}
.lead,
.sec-head p,
.card p,
.pillar p {
  text-wrap: pretty;
}
.stat .n,
.plan .price,
.metric .v,
.t-metric {
  font-variant-numeric: tabular-nums;
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .tgrid {
    grid-template-columns: 1fr;
  }
}
.tcard {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease;
}
.tcard:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 240, 255, .3);
}
.tcard .t-result {
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.tcard .t-metric {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tcard .t-label {
  font-size: .8rem;
  color: var(--muted);
}
.tcard .quote {
  font-size: 1.01rem;
  line-height: 1.55;
  color: rgba(238, 241, 250, .9);
  font-weight: 300;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.tcard .who {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}
.tcard .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  color: #04050a;
  background: linear-gradient(150deg, var(--cyan), var(--violet));
}
.tcard .who .nm {
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
}
.tcard .who .ro {
  font-size: .8rem;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-vals {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.about-val {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
}
.about-val svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.7;
  margin-top: 2px;
}
.about-val b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.about-val span {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
}
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 520px) {
  .team {
    grid-template-columns: 1fr;
  }
}
.member {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.member:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 240, 255, .3);
  box-shadow: 0 12px 30px rgba(94, 240, 255, .08);
}
.member .ph {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s ease, border-color .3s ease;
}
.member:hover .ph {
  transform: scale(1.05);
  border-color: var(--cyan);
}
.member .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}
.member .mn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
}
.member .mr {
  font-size: .82rem;
  color: var(--cyan);
  font-family: var(--mono);
  margin-top: 3px;
}
.member .mb {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 10px;
  text-wrap: pretty;
}
.faq {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item:hover {
  border-color: rgba(94, 240, 255, .25);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}
.faq-q .ic {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .ic::before,
.faq-q .ic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq-q .ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-q[aria-expanded="true"] .ic::after {
  transform: translate(-50%, -50%) rotate(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a .inner {
  padding: 0 26px 24px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  text-wrap: pretty;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}
.contact-points .cp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-points .cp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.7;
  margin-top: 2px;
}
.contact-points .cp b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact-points .cp span,
.contact-points .cp a {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 300;
  text-decoration: none;
}
.contact-points .cp a:hover {
  color: var(--cyan);
}
.form {
  padding: 32px 30px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  backdrop-filter: blur(14px);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: .82rem;
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.field label .req {
  color: var(--pink);
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: .95rem;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .25s ease, background .25s ease;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(238, 241, 250, .35);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(94, 240, 255, .55);
  background: rgba(94, 240, 255, .05);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--pink);
  background: rgba(255, 94, 168, .06);
}
.form .err {
  display: none;
  font-size: .78rem;
  color: #ff9ec6;
  margin-top: 6px;
}
.form .err.show {
  display: block;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form .consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #5ef0ff;
}
.form .consent a {
  color: var(--cyan);
  text-decoration: underline;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .9rem;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.ok {
  background: rgba(92, 255, 157, .1);
  border: 1px solid rgba(92, 255, 157, .3);
  color: #7dffb0;
}
.form-status.bad {
  background: rgba(255, 94, 168, .1);
  border: 1px solid rgba(255, 94, 168, .3);
  color: #ff9ec6;
}
dialog.legal {
  max-width: 760px;
  width: 92%;
  max-height: 84vh;
  overflow: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg2);
  color: var(--text);
}
dialog.legal::backdrop {
  background: rgba(3, 4, 9, .78);
  backdrop-filter: blur(6px);
}
dialog.legal .lg-head {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
dialog.legal h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
}
dialog.legal .lg-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}
dialog.legal .lg-body {
  padding: 24px 28px 30px;
  font-weight: 300;
  color: rgba(238, 241, 250, .82);
  line-height: 1.7;
}
dialog.legal .lg-body h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
  font-size: 1rem;
}
dialog.legal .lg-body p {
  margin-bottom: 10px;
  text-wrap: pretty;
}
dialog.legal .lg-body .todo {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--cyan);
  background: rgba(94, 240, 255, .06);
  border: 1px dashed rgba(94, 240, 255, .3);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 6px 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .faq-a,
  .skip-link {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
/* legal subpages wrapper */
.legal-page {
  padding: 130px 0 90px;
}
.legal-page h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 30px;
}
.legal-page h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 30px 0 10px;
}
.legal-page p {
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 300;
  max-width: 800px;
}
.legal-page ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--muted);
}
.legal-page li {
  margin-bottom: 8px;
  font-weight: 300;
}
.legal-page .todo {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--cyan);
  background: rgba(94, 240, 255, .06);
  border: 1px dashed rgba(94, 240, 255, .3);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 24px;
  max-width: 800px;
}

/* === Custom Stock Visuals & Prompt Optimizer Styles === */
.pillar-visual {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pillar:hover .pillar-visual {
  transform: scale(1.02);
  border-color: var(--cyan);
}
.pillar.dev:hover .pillar-visual {
  border-color: var(--pink);
}

.prompt-tool {
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(16px);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.prompt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
@media(max-width: 860px) {
  .prompt-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.prompt-tool h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.prompt-tool p.desc {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 24px;
}
.console-box {
  background: #06070d;
  border: 1px solid #1a1e2e;
  border-radius: 16px;
  padding: 24px;
  font-family: var(--mono);
  font-size: 0.86rem;
  color: #a5d6ff;
  line-height: 1.6;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}
.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1e2e;
  padding-bottom: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.console-dots {
  display: flex;
  gap: 6px;
}
.console-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a1e2e;
}
.console-dots i:nth-child(1) { background: var(--pink); }
.console-dots i:nth-child(2) { background: #febc2e; }
.console-dots i:nth-child(3) { background: #28c840; }

.console-body {
  flex: 1;
  white-space: pre-wrap;
  word-break: break-all;
}
.console-body .c-sys { color: #ff7b72; }
.console-body .c-ctx { color: #79c0ff; }
.console-body .c-out { color: #7ee787; }

.console-btn-copy {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.74rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.console-btn-copy:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border-color: rgba(94, 240, 255, 0.4);
}
.console-loader {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 13, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  color: var(--cyan);
  font-size: 0.9rem;
  gap: 12px;
}
.console-loader i {
  width: 18px;
  height: 18px;
  border: 2px solid var(--cyan);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

