:root {
  --bg: #050712;
  --bg-soft: #0a0f22;
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f8ff;
  --muted: #a9b1c7;
  --muted-2: #737b94;
  --cyan: #2dfdff;
  --blue: #5277ff;
  --purple: #9d4edd;
  --pink: #ff4ecd;
  --green: #65ffb7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(82, 119, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 5%, rgba(157, 78, 221, 0.2), transparent 28rem),
    radial-gradient(circle at 50% 80%, rgba(45, 253, 255, 0.08), transparent 32rem),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 80%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(45,253,255,0.035), transparent);
  z-index: -1;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 7, 18, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 1.16rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 20%, var(--cyan), transparent 42%),
    linear-gradient(135deg, rgba(82,119,255,.9), rgba(157,78,221,.85));
  box-shadow: 0 0 28px rgba(45,253,255,.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(45,253,255,.45);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 16px 50px rgba(45,253,255,.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(82,119,255,.26);
}

.btn-primary:hover {
  box-shadow: 0 18px 60px rgba(157,78,221,.32);
}

.btn-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.92rem;
}

.hero {
  padding: 98px 0 70px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--cyan);
  font-weight: 850;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  max-width: 720px;
  margin: 24px 0 0;
}

.gradient-text {
  background: linear-gradient(100deg, var(--text), var(--cyan), var(--purple), var(--text));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.metric {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.045);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.metric span {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.orb-stage {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.cyber-orb {
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 48% 47%, rgba(255,255,255,0.16) 0 5%, transparent 6%),
    radial-gradient(circle at 30% 30%, rgba(45,253,255,.36), transparent 25%),
    radial-gradient(circle at 66% 38%, rgba(157,78,221,.4), transparent 25%),
    radial-gradient(circle at 45% 72%, rgba(82,119,255,.25), transparent 30%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 80px rgba(45,253,255,.08),
    0 0 90px rgba(82,119,255,.18);
  animation: float 7s ease-in-out infinite;
  overflow: hidden;
}

.cyber-orb::before,
.cyber-orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(45,253,255,.25);
  transform: rotateX(68deg) rotateZ(0deg);
  animation: spin 11s linear infinite;
}

.cyber-orb::after {
  inset: 22%;
  border-color: rgba(255,78,205,.24);
  animation-duration: 8s;
  animation-direction: reverse;
}

.orbit-card {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(8, 12, 30, .68);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  color: var(--text);
  animation: float 7s ease-in-out infinite;
}

.orbit-card small {
  display: block;
  color: var(--muted-2);
  font-weight: 700;
}

.orbit-card strong {
  font-size: 0.98rem;
}

.orbit-card.one {
  top: 9%;
  left: 4%;
}

.orbit-card.two {
  right: 0;
  top: 37%;
  animation-delay: -2s;
}

.orbit-card.three {
  bottom: 10%;
  left: 17%;
  animation-delay: -4s;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes spin {
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 640px;
}

.panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -40% -70% -40%;
  height: 160px;
  background: radial-gradient(circle, rgba(45,253,255,.12), transparent 65%);
  opacity: 0;
  transition: opacity .22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,253,255,.32);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
}

.card:hover::after {
  opacity: 1;
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45,253,255,.16), rgba(157,78,221,.16));
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3,
.project-card h3 {
  margin-bottom: 12px;
}

.card p,
.project-card p,
.feature p,
.industry-card p,
.tech-group p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.glass-box {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.052);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(101,255,183,.12);
  color: var(--green);
  font-weight: 900;
}

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

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.052);
  transition: transform .22s ease, border-color .22s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,253,255,.35);
}

.project-thumb {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(45,253,255,.38), transparent 28%),
    radial-gradient(circle at 78% 15%, rgba(157,78,221,.42), transparent 34%),
    linear-gradient(135deg, #090d20, #121a38);
}

.project-thumb::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(45deg);
  animation: rotateSlow 12s linear infinite;
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black, transparent 74%);
}

.project-thumb span {
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes rotateSlow {
  to { transform: rotate(405deg); }
}

.project-body {
  padding: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.tag {
  font-size: 0.78rem;
  color: #dfe7ff;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.08);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 750;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--text);
  border-color: rgba(45,253,255,.4);
  background: rgba(45,253,255,.09);
}

.cta-band {
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 20% 20%, rgba(45,253,255,.15), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(157,78,221,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 720px;
}

.page-hero {
  padding: 86px 0 44px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.breadcrumb {
  color: var(--muted-2);
  margin-bottom: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--cyan);
}

.service-block {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  margin-bottom: 20px;
}

.service-list,
.clean-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li,
.clean-list li {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 14px;
  padding: 12px 14px;
  color: #dbe2fb;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.048);
}

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

.tech-group {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tech-badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #eef2ff;
  font-weight: 750;
  font-size: .88rem;
}

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

.quote-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.052);
}

.quote-card blockquote {
  margin: 0;
  color: #edf2ff;
  font-size: 1.02rem;
}

.quote-card footer {
  margin-top: 20px;
  color: var(--muted);
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(45,253,255,.45), transparent 34%),
    linear-gradient(135deg, rgba(82,119,255,.7), rgba(157,78,221,.7));
}

.founder-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
}

.profile-placeholder {
  aspect-ratio: 1;
  border-radius: 34px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 35% 25%, rgba(45,253,255,.38), transparent 28%),
    radial-gradient(circle at 70% 30%, rgba(157,78,221,.32), transparent 31%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.profile-placeholder svg {
  width: 70%;
  opacity: .88;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.055);
  border-radius: 999px;
  padding: 9px 13px;
  color: #dce6ff;
  font-weight: 800;
  font-size: .9rem;
}

.socials a:hover {
  border-color: rgba(45,253,255,.38);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 7px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.065);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 154px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(45,253,255,.42);
  box-shadow: 0 0 0 4px rgba(45,253,255,.08);
}

.form-note {
  color: var(--muted-2);
  font-size: .92rem;
  margin-top: 8px;
}

.project-hero-media {
  min-height: 430px;
  border-radius: 34px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(45,253,255,.28), transparent 28%),
    radial-gradient(circle at 75% 20%, rgba(255,78,205,.18), transparent 30%),
    linear-gradient(135deg, #081024, #121837);
}

.play-button {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  font-size: 1.7rem;
}

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

.gallery-item {
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 25% 30%, rgba(45,253,255,.22), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(157,78,221,.22), transparent 29%),
    rgba(255,255,255,.045);
}

.site-footer {
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 50px;
  background: rgba(0,0,0,.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .8fr;
  gap: 26px;
}

.footer-grid h4 {
  margin-bottom: 13px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 34px;
  padding-top: 22px;
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

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

@media (max-width: 1050px) {
  .hero-grid,
  .split,
  .contact-layout,
  .service-block {
    grid-template-columns: 1fr;
  }

  .orb-stage {
    min-height: 420px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(5, 7, 18, .95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 12px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .card-grid,
  .projects-grid,
  .testimonial-grid,
  .tech-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .metrics,
  .service-list,
  .clean-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .profile-placeholder {
    max-width: 290px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .page-hero {
    padding-top: 62px;
  }

  .section {
    padding: 60px 0;
  }

  .glass-box,
  .card,
  .cta-band {
    padding: 24px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .orbit-card {
    display: none;
  }

  .cyber-orb {
    width: 320px;
  }

  .project-hero-media {
    min-height: 300px;
  }
}


/* One-page landing updates */
html {
  scroll-padding-top: 92px;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.nav-links a[href^="#"].active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.landing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,253,255,.28), rgba(157,78,221,.22), transparent);
  margin: 10px auto;
  width: min(var(--max), calc(100% - 40px));
}

.one-page-note {
  color: var(--muted-2);
  font-size: .94rem;
}


/* Futuristic 3D World Theme
   Adds cinematic depth, floating world objects, portal visuals, and immersive cards.
*/

body {
  background:
    radial-gradient(circle at 18% 10%, rgba(45, 253, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(157, 78, 221, 0.18), transparent 34rem),
    radial-gradient(circle at 50% 42%, rgba(82, 119, 255, 0.08), transparent 46rem),
    linear-gradient(180deg, #03040b 0%, #070b1a 42%, #03040b 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(45,253,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,78,221,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  transform-origin: center top;
  transform: perspective(700px) rotateX(58deg) translateY(-18%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 72%);
}

.site-header {
  background: rgba(3, 4, 11, 0.72);
}

.world-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 96px 0 88px;
  overflow: hidden;
}

.world-hero::before {
  content: "";
  position: absolute;
  width: 920px;
  height: 920px;
  right: -250px;
  top: -160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(45,253,255,.11), transparent 58%),
    conic-gradient(from 45deg, transparent, rgba(45,253,255,.16), transparent, rgba(157,78,221,.14), transparent);
  filter: blur(3px);
  opacity: .88;
  animation: rotateAura 28s linear infinite;
  pointer-events: none;
}

.world-hero h1 {
  max-width: 820px;
  text-shadow: 0 0 46px rgba(82,119,255,.12);
}

.world-hero .lead {
  max-width: 690px;
}

.world-stage {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.world-stage::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(45,253,255,.18), transparent 18%),
    radial-gradient(circle at 42% 42%, rgba(255,255,255,.12), transparent 6%),
    conic-gradient(from 0deg, rgba(45,253,255,.22), rgba(82,119,255,.08), rgba(157,78,221,.24), rgba(45,253,255,.22));
  filter: blur(12px);
  opacity: .42;
  animation: pulseWorld 6s ease-in-out infinite;
}

.world-stage::after {
  content: "";
  position: absolute;
  width: 88%;
  height: 180px;
  bottom: 32px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(45,253,255,.18), transparent 62%);
  transform: rotateX(72deg);
  filter: blur(2px);
  opacity: .72;
}

.digital-planet {
  width: min(94%, 510px);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.24), transparent 12%),
    radial-gradient(circle at 42% 36%, rgba(45,253,255,.45), transparent 22%),
    radial-gradient(circle at 70% 34%, rgba(157,78,221,.44), transparent 25%),
    radial-gradient(circle at 48% 78%, rgba(82,119,255,.26), transparent 26%),
    linear-gradient(135deg, rgba(10,18,45,.96), rgba(3,4,13,.96));
  box-shadow:
    inset -28px -42px 90px rgba(0,0,0,.46),
    inset 20px 20px 70px rgba(255,255,255,.045),
    0 0 80px rgba(45,253,255,.18),
    0 0 180px rgba(82,119,255,.10);
  animation: worldFloat 7s ease-in-out infinite;
  overflow: hidden;
  z-index: 3;
}

.digital-planet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 42%, transparent 72%);
  opacity: .56;
  animation: driftGrid 9s linear infinite;
}

.digital-planet::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  border: 1px solid rgba(45,253,255,.34);
  box-shadow: 0 0 22px rgba(45,253,255,.16);
  transform: rotateX(68deg) rotateZ(-16deg);
  animation: spinRing 12s linear infinite;
}

.portal-ring {
  position: absolute;
  width: 600px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(45,253,255,.26);
  box-shadow:
    0 0 28px rgba(45,253,255,.15),
    inset 0 0 28px rgba(157,78,221,.1);
  transform: rotateX(72deg) rotateZ(-10deg) translateY(8px);
  z-index: 4;
  pointer-events: none;
}

.portal-ring.ring-two {
  width: 470px;
  height: 154px;
  border-color: rgba(157,78,221,.27);
  transform: rotateX(74deg) rotateZ(18deg) translateY(-18px);
  animation: portalDrift 8s ease-in-out infinite reverse;
}

.holo-floor {
  position: absolute;
  width: 86%;
  height: 210px;
  bottom: 10px;
  border-radius: 50%;
  transform: rotateX(72deg);
  background-image:
    linear-gradient(rgba(45,253,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,78,221,.15) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 0 42%, transparent 70%);
  opacity: .62;
  z-index: 1;
  animation: holoMove 5s linear infinite;
}

.world-node {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6, 10, 26, .72);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 13px 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  animation: worldFloat 7s ease-in-out infinite;
}

.world-node small {
  display: block;
  color: var(--muted-2);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .68rem;
}

.world-node strong {
  color: var(--text);
  font-size: .96rem;
}

.world-node.node-one {
  top: 8%;
  left: -3%;
}

.world-node.node-two {
  right: -2%;
  top: 35%;
  animation-delay: -2s;
}

.world-node.node-three {
  bottom: 13%;
  left: 10%;
  animation-delay: -4s;
}

.floating-cube {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45,253,255,.35);
  background: linear-gradient(135deg, rgba(45,253,255,.12), rgba(157,78,221,.12));
  box-shadow: 0 0 24px rgba(45,253,255,.12);
  transform: rotateX(55deg) rotateZ(35deg);
  animation: cubeFloat 6s ease-in-out infinite;
  z-index: 5;
}

.floating-cube.cube-one {
  top: 22%;
  right: 16%;
}

.floating-cube.cube-two {
  bottom: 22%;
  right: 24%;
  width: 32px;
  height: 32px;
  animation-delay: -2.5s;
}

.floating-cube.cube-three {
  top: 48%;
  left: 8%;
  width: 28px;
  height: 28px;
  animation-delay: -4s;
}

.card,
.project-card,
.glass-box,
.service-block,
.industry-card,
.tech-group,
.quote-card {
  box-shadow:
    0 22px 80px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.card:hover,
.project-card:hover,
.industry-card:hover,
.tech-group:hover {
  transform: translateY(-8px) scale(1.01);
}

.project-thumb {
  min-height: 240px;
  background:
    radial-gradient(circle at 30% 30%, rgba(45,253,255,.34), transparent 26%),
    radial-gradient(circle at 76% 20%, rgba(157,78,221,.36), transparent 32%),
    radial-gradient(circle at 48% 75%, rgba(82,119,255,.25), transparent 34%),
    linear-gradient(135deg, #060a1b, #101836 64%, #050712);
}

.project-thumb::before {
  inset: 24%;
  border-radius: 26px;
  transform: rotateX(58deg) rotateZ(45deg);
  border-color: rgba(45,253,255,.2);
  box-shadow: 0 0 36px rgba(45,253,255,.12);
}

.project-thumb span {
  transform: translateZ(40px);
  background: rgba(3,4,11,.44);
}

.section-head h2 {
  max-width: 880px;
}

.landing-divider {
  opacity: .85;
}

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

@keyframes worldFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-18px) rotateX(2deg) rotateY(-4deg); }
}

@keyframes pulseWorld {
  0%, 100% { transform: scale(.94); opacity: .34; }
  50% { transform: scale(1.04); opacity: .58; }
}

@keyframes driftGrid {
  to { background-position: 44px 44px; }
}

@keyframes spinRing {
  to { transform: rotateX(68deg) rotateZ(344deg); }
}

@keyframes portalDrift {
  0%, 100% { transform: rotateX(74deg) rotateZ(18deg) translateY(-18px) scale(1); }
  50% { transform: rotateX(74deg) rotateZ(24deg) translateY(-28px) scale(1.04); }
}

@keyframes holoMove {
  to { background-position: 34px 34px; }
}

@keyframes cubeFloat {
  0%, 100% { transform: translateY(0) rotateX(55deg) rotateZ(35deg); }
  50% { transform: translateY(-20px) rotateX(70deg) rotateZ(75deg); }
}

@media (max-width: 1050px) {
  .world-stage {
    min-height: 520px;
  }

  .portal-ring {
    width: 520px;
  }
}

@media (max-width: 860px) {
  .world-hero {
    min-height: auto;
  }

  .world-stage {
    min-height: 440px;
  }

  .digital-planet {
    width: min(88%, 390px);
  }

  .portal-ring {
    width: 430px;
    height: 150px;
  }

  .world-node {
    display: none;
  }
}

@media (max-width: 560px) {
  .world-stage {
    min-height: 360px;
  }

  .digital-planet {
    width: min(92%, 310px);
  }

  .portal-ring {
    width: 330px;
    height: 116px;
  }

  .floating-cube {
    display: none;
  }
}


/* Futuristic 3D World — Sharp Geometry Upgrade
   Stronger 3D props, angular/chamfered surfaces, harder sci-fi interface language.
*/

:root {
  --radius: 14px;
  --radius-sm: 8px;
  --cut: 18px;
  --cut-sm: 10px;
  --panel-line: rgba(45,253,255,.22);
  --panel-line-purple: rgba(157,78,221,.20);
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(45,253,255,.12), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(157,78,221,.16), transparent 31rem),
    radial-gradient(circle at 28% 52%, rgba(82,119,255,.08), transparent 34rem),
    radial-gradient(circle at 78% 74%, rgba(45,253,255,.055), transparent 36rem),
    linear-gradient(180deg, #02030a 0%, #070b19 44%, #02030a 100%);
}

/* Angular UI language */
.btn,
.nav-links a,
.logo-mark,
.metric,
.card,
.project-card,
.glass-box,
.service-block,
.industry-card,
.tech-group,
.quote-card,
.field input,
.field textarea,
.field select,
.filter-btn,
.tag,
.tech-badge,
.socials a,
.cta-band,
.project-hero-media,
.gallery-item,
.profile-placeholder {
  border-radius: 0;
}

.btn,
.logo-mark,
.metric,
.card,
.project-card,
.glass-box,
.service-block,
.industry-card,
.tech-group,
.quote-card,
.field input,
.field textarea,
.field select,
.cta-band,
.project-hero-media,
.gallery-item,
.profile-placeholder {
  clip-path: polygon(
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%,
    0 var(--cut)
  );
}

.btn,
.nav-links a,
.filter-btn,
.tag,
.tech-badge,
.socials a {
  clip-path: polygon(
    var(--cut-sm) 0,
    100% 0,
    100% calc(100% - var(--cut-sm)),
    calc(100% - var(--cut-sm)) 100%,
    0 100%,
    0 var(--cut-sm)
  );
  border-radius: 0;
}

.logo {
  letter-spacing: -0.025em;
}

.logo-mark {
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(45,253,255,.96), rgba(82,119,255,.82) 46%, rgba(157,78,221,.88));
}

.site-header {
  border-bottom: 1px solid rgba(45,253,255,.13);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
}

.nav-links a.active,
.nav-links a:hover {
  background:
    linear-gradient(135deg, rgba(45,253,255,.11), rgba(157,78,221,.08));
  box-shadow: inset 0 0 0 1px rgba(45,253,255,.16);
}

.card,
.project-card,
.glass-box,
.service-block,
.industry-card,
.tech-group,
.quote-card,
.metric {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    linear-gradient(135deg, rgba(45,253,255,.055), transparent 38%, rgba(157,78,221,.04));
  border-color: rgba(255,255,255,.105);
}

.card::before,
.glass-box::before,
.service-block::before,
.industry-card::before,
.tech-group::before,
.quote-card::before,
.project-card::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  clip-path: inherit;
  background:
    linear-gradient(90deg, var(--panel-line), transparent 25%) top left / 100% 1px no-repeat,
    linear-gradient(180deg, var(--panel-line), transparent 35%) top left / 1px 100% no-repeat,
    linear-gradient(270deg, var(--panel-line-purple), transparent 28%) bottom right / 100% 1px no-repeat,
    linear-gradient(0deg, var(--panel-line-purple), transparent 38%) bottom right / 1px 100% no-repeat;
  opacity: .82;
}

.card:hover,
.project-card:hover,
.industry-card:hover,
.tech-group:hover,
.service-block:hover {
  transform: translateY(-10px) rotateX(1deg) rotateY(-1deg);
  border-color: rgba(45,253,255,.34);
  box-shadow:
    0 28px 100px rgba(0,0,0,.42),
    0 0 42px rgba(45,253,255,.07),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.icon {
  border-radius: 0;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  background:
    linear-gradient(135deg, rgba(45,253,255,.2), rgba(157,78,221,.12)),
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,.12) 50%, transparent 52%);
}

h1, h2, h3 {
  letter-spacing: -0.07em;
}

.eyebrow {
  color: #8ffcff;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(157,78,221,.65), transparent);
}

/* More cinematic angular world hero */
.world-hero {
  isolation: isolate;
}

.world-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -14%;
  width: 70vw;
  height: 28vw;
  background:
    linear-gradient(90deg, transparent, rgba(45,253,255,.08), transparent),
    repeating-linear-gradient(90deg, rgba(45,253,255,.11) 0 1px, transparent 1px 54px);
  transform: perspective(800px) rotateX(64deg) rotateZ(-2deg);
  opacity: .56;
  filter: blur(.2px);
  z-index: -1;
}

.digital-planet {
  clip-path: polygon(
    50% 0,
    74% 6%,
    94% 25%,
    100% 50%,
    92% 76%,
    72% 94%,
    50% 100%,
    25% 94%,
    7% 75%,
    0 50%,
    7% 25%,
    26% 6%
  );
  border-radius: 0;
}

.digital-planet::before,
.digital-planet::after {
  border-radius: 0;
}

.portal-ring {
  border-radius: 0;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

.holo-floor {
  border-radius: 0;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.world-node {
  border-radius: 0;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

/* Global 3D decor field */
.scene-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.scene-field > span {
  position: absolute;
  display: block;
  opacity: .55;
  transform-style: preserve-3d;
}

.scene-field .wire-cube {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(45,253,255,.28);
  box-shadow: inset 0 0 18px rgba(45,253,255,.08), 0 0 24px rgba(45,253,255,.08);
  transform: rotateX(58deg) rotateZ(38deg);
  animation: sceneCube 11s ease-in-out infinite;
}

.scene-field .wire-cube::before,
.scene-field .wire-cube::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(157,78,221,.2);
}

.scene-field .wire-cube::after {
  inset: -9px;
  opacity: .35;
}

.scene-field .diamond {
  width: 42px;
  height: 42px;
  background:
    linear-gradient(135deg, rgba(45,253,255,.14), rgba(157,78,221,.12));
  border: 1px solid rgba(255,255,255,.15);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: sceneDiamond 9s ease-in-out infinite;
}

.scene-field .ring {
  width: 120px;
  height: 42px;
  border: 1px solid rgba(45,253,255,.24);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transform: rotateX(70deg) rotateZ(-18deg);
  animation: sceneRing 13s linear infinite;
}

.scene-field .shard {
  width: 34px;
  height: 86px;
  background:
    linear-gradient(180deg, rgba(45,253,255,.22), rgba(82,119,255,.04));
  border: 1px solid rgba(45,253,255,.18);
  clip-path: polygon(50% 0, 100% 85%, 58% 100%, 0 18%);
  animation: sceneShard 10s ease-in-out infinite;
}

.scene-field .one { left: 5%; top: 18%; }
.scene-field .two { right: 7%; top: 22%; animation-delay: -2s; }
.scene-field .three { left: 12%; top: 66%; animation-delay: -4s; }
.scene-field .four { right: 14%; top: 72%; animation-delay: -6s; }
.scene-field .five { left: 48%; top: 12%; animation-delay: -8s; }
.scene-field .six { right: 34%; top: 58%; animation-delay: -3s; }

/* Section-local 3D props */
.section,
.page-hero {
  position: relative;
  overflow: hidden;
}

.section::before,
.page-hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: 12%;
  background:
    linear-gradient(135deg, rgba(45,253,255,.08), rgba(157,78,221,.04));
  border: 1px solid rgba(45,253,255,.13);
  clip-path: polygon(50% 0, 100% 28%, 82% 100%, 18% 100%, 0 28%);
  transform: rotateX(58deg) rotateZ(32deg);
  opacity: .42;
  pointer-events: none;
  animation: localProp 12s ease-in-out infinite;
}

.section:nth-of-type(even)::before {
  left: -90px;
  right: auto;
  top: 18%;
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  animation-delay: -3s;
}

.section::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 104px;
  left: 8%;
  bottom: 20px;
  border: 1px solid rgba(157,78,221,.13);
  background:
    repeating-linear-gradient(90deg, rgba(45,253,255,.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(157,78,221,.06) 0 1px, transparent 1px 32px);
  clip-path: polygon(9% 0, 91% 0, 100% 50%, 91% 100%, 9% 100%, 0 50%);
  transform: perspective(600px) rotateX(67deg) rotateZ(-8deg);
  opacity: .28;
  pointer-events: none;
  animation: floorPlate 8s linear infinite;
}

.section > .container,
.page-hero > .container {
  position: relative;
  z-index: 2;
}

.service-block {
  transition: .24s ease;
}

.service-block:nth-child(2)::after,
.service-block:nth-child(3)::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  right: 28px;
  top: 24px;
  border: 1px solid rgba(45,253,255,.20);
  background: rgba(45,253,255,.035);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: rotateX(58deg) rotateZ(32deg);
  animation: microSpin 7s linear infinite;
}

.service-block:nth-child(3)::after {
  width: 94px;
  height: 34px;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  animation-duration: 10s;
}

.projects-grid {
  perspective: 1100px;
}

.project-card {
  transform-style: preserve-3d;
}

.project-card:hover .project-thumb::before {
  animation-duration: 4s;
}

.project-thumb::after {
  background-image:
    linear-gradient(rgba(45,253,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,78,221,.10) 1px, transparent 1px);
  background-size: 28px 28px;
}

.industry-card,
.tech-group {
  min-height: 190px;
}

.industry-card::after,
.tech-group::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45,253,255,.18);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: rotateX(60deg) rotateZ(38deg);
  opacity: .62;
}

.cta-band {
  background:
    radial-gradient(circle at 16% 24%, rgba(45,253,255,.13), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(157,78,221,.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -170px;
  border: 1px solid rgba(45,253,255,.16);
  clip-path: polygon(50% 0, 100% 25%, 92% 75%, 50% 100%, 8% 75%, 0 25%);
  transform: rotateZ(20deg);
  opacity: .4;
  animation: rotateAura 18s linear infinite;
}

.form .btn {
  justify-self: start;
}

.avatar {
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

/* Optional decorative objects that are inserted into the landing page */
.section-prop {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .62;
  transform-style: preserve-3d;
}

.section-prop.cube {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(45,253,255,.24);
  background: rgba(45,253,255,.025);
  transform: rotateX(58deg) rotateZ(35deg);
  animation: sceneCube 10s ease-in-out infinite;
}

.section-prop.pyramid {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, rgba(157,78,221,.12), rgba(45,253,255,.05));
  border: 1px solid rgba(157,78,221,.18);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotateX(20deg) rotateZ(12deg);
  animation: localProp 9s ease-in-out infinite;
}

.section-prop.orb {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(45,253,255,.18);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.16), transparent 12%),
    radial-gradient(circle at 45% 44%, rgba(45,253,255,.12), transparent 36%),
    rgba(255,255,255,.02);
  clip-path: polygon(50% 0, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0 50%, 15% 15%);
  animation: pulseWorld 7s ease-in-out infinite;
}

.section-prop.ring {
  width: 180px;
  height: 64px;
  border: 1px solid rgba(45,253,255,.22);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transform: rotateX(70deg) rotateZ(-14deg);
  animation: sceneRing 11s linear infinite;
}

.prop-left-top { left: 3%; top: 12%; }
.prop-right-top { right: 4%; top: 10%; }
.prop-left-bottom { left: 5%; bottom: 8%; }
.prop-right-bottom { right: 6%; bottom: 10%; }

@keyframes sceneCube {
  0%, 100% { transform: translateY(0) rotateX(58deg) rotateZ(35deg); }
  50% { transform: translateY(-22px) rotateX(72deg) rotateZ(78deg); }
}

@keyframes sceneDiamond {
  0%, 100% { transform: translateY(0) rotate(45deg) scale(1); }
  50% { transform: translateY(-18px) rotate(90deg) scale(1.08); }
}

@keyframes sceneRing {
  to { transform: rotateX(70deg) rotateZ(346deg); }
}

@keyframes sceneShard {
  0%, 100% { transform: translateY(0) rotateZ(12deg); }
  50% { transform: translateY(-26px) rotateZ(-12deg); }
}

@keyframes localProp {
  0%, 100% { transform: translateY(0) rotateX(58deg) rotateZ(32deg); }
  50% { transform: translateY(-18px) rotateX(64deg) rotateZ(55deg); }
}

@keyframes floorPlate {
  to { background-position: 32px 32px; }
}

@keyframes microSpin {
  to { transform: rotateX(58deg) rotateZ(392deg); }
}

@media (max-width: 1050px) {
  .section::before,
  .page-hero::before {
    opacity: .24;
  }

  .section::after,
  .page-hero::after {
    opacity: .18;
  }
}

@media (max-width: 860px) {
  .nav-links {
    border-radius: 0;
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  }

  .scene-field {
    display: none;
  }

  .section-prop,
  .section::before,
  .section::after,
  .page-hero::before,
  .page-hero::after {
    display: none;
  }

  .card:hover,
  .project-card:hover,
  .industry-card:hover,
  .tech-group:hover,
  .service-block:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  :root {
    --cut: 13px;
    --cut-sm: 8px;
  }
}


/* Weapon Hero + Interactive Neuron Net
   Replaces the orb/world centerpiece with a stylized 3D sci-fi sword.
   Adds an interactive neuron-style background canvas with mouse motion.
*/

.neuron-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .85;
  mix-blend-mode: screen;
}

.site-header,
.scene-field,
main,
.site-footer {
  position: relative;
}

.site-header,
main,
.site-footer {
  z-index: 2;
}

.scene-field {
  z-index: 1;
}

/* Hero visual updated from orb/world to weapon model */
.weapon-stage {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.weapon-stage::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(45,253,255,.12), transparent 42%),
    conic-gradient(from 0deg, rgba(45,253,255,.14), transparent 24%, rgba(157,78,221,.18), transparent 50%, rgba(45,253,255,.14), transparent 82%);
  filter: blur(10px);
  opacity: .9;
  animation: weaponAura 14s linear infinite;
  z-index: 0;
}

.weapon-grid {
  position: absolute;
  width: 88%;
  height: 220px;
  bottom: 14px;
  background-image:
    linear-gradient(rgba(45,253,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,78,221,.16) 1px, transparent 1px);
  background-size: 28px 28px;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  transform: rotateX(74deg) rotateZ(-8deg);
  opacity: .45;
  z-index: 0;
  animation: gridShift 7s linear infinite;
}

.weapon-platform {
  position: absolute;
  width: 540px;
  height: 170px;
  border: 1px solid rgba(45,253,255,.24);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transform: rotateX(72deg) rotateZ(-8deg) translateY(34px);
  background:
    linear-gradient(180deg, rgba(45,253,255,.06), rgba(157,78,221,.03));
  box-shadow:
    0 0 42px rgba(45,253,255,.12),
    inset 0 0 28px rgba(157,78,221,.06);
  z-index: 1;
}

.weapon-platform::before,
.weapon-platform::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(45,253,255,.12);
  clip-path: inherit;
}

.weapon-platform::after {
  inset: 36px 80px;
  border-color: rgba(157,78,221,.16);
}

.hero-weapon {
  position: relative;
  width: 210px;
  height: 520px;
  transform-style: preserve-3d;
  transform:
    rotateZ(32deg)
    rotateX(calc(8deg + var(--mouse-tilt-y, 0deg)))
    rotateY(calc(-12deg + var(--mouse-tilt-x, 0deg)));
  animation: weaponFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
  z-index: 4;
}

.hero-weapon .blade-core,
.hero-weapon .blade-glow,
.hero-weapon .blade-edge-left,
.hero-weapon .blade-edge-right,
.hero-weapon .guard,
.hero-weapon .handle,
.hero-weapon .grip-lines,
.hero-weapon .pommel,
.hero-weapon .energy-cell {
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
}

/* Energy sword model */
.hero-weapon .blade-glow {
  width: 34px;
  height: 300px;
  top: 8px;
  margin-left: -17px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(45,253,255,.72) 24%, rgba(45,253,255,.24) 100%);
  clip-path: polygon(50% 0, 88% 8%, 72% 100%, 28% 100%, 12% 8%);
  filter: blur(12px);
  opacity: .95;
  transform: translateZ(0);
}

.hero-weapon .blade-core {
  width: 26px;
  height: 306px;
  top: 0;
  margin-left: -13px;
  background:
    linear-gradient(180deg, #ffffff 0%, #e4ffff 14%, #77ffff 38%, #17f7ff 72%, #07bdd6 100%);
  clip-path: polygon(50% 0, 86% 7%, 68% 100%, 32% 100%, 14% 7%);
  box-shadow:
    0 0 18px rgba(255,255,255,.48),
    0 0 44px rgba(45,253,255,.34);
  transform: translateZ(22px);
}

.hero-weapon .blade-edge-left,
.hero-weapon .blade-edge-right {
  width: 10px;
  height: 280px;
  top: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(82,119,255,.12));
  opacity: .45;
}

.hero-weapon .blade-edge-left {
  margin-left: -25px;
  clip-path: polygon(100% 0, 0 8%, 20% 100%, 100% 100%);
  transform: translateZ(10px) rotateY(18deg);
}

.hero-weapon .blade-edge-right {
  margin-left: 15px;
  clip-path: polygon(0 0, 100% 8%, 80% 100%, 0 100%);
  transform: translateZ(10px) rotateY(-18deg);
}

.hero-weapon .guard {
  width: 110px;
  height: 44px;
  top: 290px;
  margin-left: -55px;
  background:
    linear-gradient(135deg, rgba(20,24,43,.96), rgba(60,76,120,.86) 52%, rgba(157,78,221,.42));
  border: 1px solid rgba(255,255,255,.14);
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  box-shadow:
    inset 0 0 20px rgba(45,253,255,.08),
    0 0 24px rgba(82,119,255,.12);
  transform: translateZ(28px);
}

.hero-weapon .guard::before,
.hero-weapon .guard::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 32px;
  height: 16px;
  border: 1px solid rgba(45,253,255,.26);
  background: rgba(45,253,255,.05);
}

.hero-weapon .guard::before {
  left: -18px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.hero-weapon .guard::after {
  right: -18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero-weapon .handle {
  width: 34px;
  height: 132px;
  top: 320px;
  margin-left: -17px;
  background:
    linear-gradient(180deg, rgba(12,14,22,.98), rgba(40,54,88,.95) 60%, rgba(15,18,28,.98));
  border: 1px solid rgba(255,255,255,.12);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 10px) 100%, 0 100%, 0 12px);
  transform: translateZ(22px);
}

.hero-weapon .grip-lines {
  width: 24px;
  height: 90px;
  top: 342px;
  margin-left: -12px;
  background:
    repeating-linear-gradient(180deg, rgba(45,253,255,.2) 0 2px, transparent 2px 10px);
  opacity: .55;
  transform: translateZ(24px);
}

.hero-weapon .energy-cell {
  width: 18px;
  height: 42px;
  top: 358px;
  margin-left: -9px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(45,253,255,.32));
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  box-shadow: 0 0 16px rgba(45,253,255,.2);
  transform: translateZ(28px);
}

.hero-weapon .pommel {
  width: 42px;
  height: 44px;
  top: 446px;
  margin-left: -21px;
  background:
    linear-gradient(135deg, rgba(30,34,55,.96), rgba(106,75,158,.42));
  border: 1px solid rgba(255,255,255,.12);
  clip-path: polygon(50% 0, 100% 30%, 82% 100%, 18% 100%, 0 30%);
  box-shadow:
    0 0 20px rgba(157,78,221,.16),
    inset 0 0 16px rgba(45,253,255,.06);
  transform: translateZ(18px);
}

.weapon-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4, 8, 22, .74);
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  padding: 14px 16px;
  color: var(--text);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  animation: weaponFloat 7s ease-in-out infinite;
  z-index: 5;
}

.weapon-card small {
  display: block;
  color: var(--muted-2);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.weapon-card strong {
  font-size: .95rem;
}

.weapon-card.card-a {
  left: 0;
  top: 10%;
}

.weapon-card.card-b {
  right: 0;
  top: 38%;
  animation-delay: -2s;
}

.weapon-card.card-c {
  left: 8%;
  bottom: 11%;
  animation-delay: -4s;
}

.weapon-shard {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(45,253,255,.22);
  background: linear-gradient(180deg, rgba(45,253,255,.08), rgba(157,78,221,.04));
  box-shadow: 0 0 24px rgba(45,253,255,.06);
  opacity: .75;
}

.weapon-shard.s1 {
  width: 42px;
  height: 108px;
  right: 18%;
  top: 14%;
  clip-path: polygon(50% 0, 100% 84%, 58% 100%, 0 18%);
  animation: shardMove 8s ease-in-out infinite;
}

.weapon-shard.s2 {
  width: 74px;
  height: 28px;
  left: 10%;
  top: 42%;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  animation: ringShift 10s linear infinite;
}

.weapon-shard.s3 {
  width: 34px;
  height: 34px;
  right: 26%;
  bottom: 18%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: shardMove 6s ease-in-out infinite reverse;
}

@keyframes weaponFloat {
  0%, 100% {
    transform:
      rotateZ(32deg)
      rotateX(calc(8deg + var(--mouse-tilt-y, 0deg)))
      rotateY(calc(-12deg + var(--mouse-tilt-x, 0deg)))
      translateY(0);
  }
  50% {
    transform:
      rotateZ(34deg)
      rotateX(calc(10deg + var(--mouse-tilt-y, 0deg)))
      rotateY(calc(-16deg + var(--mouse-tilt-x, 0deg)))
      translateY(-18px);
  }
}

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

@keyframes gridShift {
  to { background-position: 28px 28px; }
}

@keyframes shardMove {
  0%, 100% { transform: translateY(0) rotateZ(0deg); }
  50% { transform: translateY(-18px) rotateZ(18deg); }
}

@keyframes ringShift {
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

/* Headline polish for this version */
.world-hero h1 {
  max-width: 860px;
}

.world-hero .lead {
  max-width: 700px;
}

@media (max-width: 1050px) {
  .weapon-stage {
    min-height: 540px;
  }
  .weapon-platform {
    width: 460px;
  }
}

@media (max-width: 860px) {
  .weapon-stage {
    min-height: 430px;
  }

  .hero-weapon {
    width: 170px;
    height: 430px;
    transform: rotateZ(26deg) scale(.88);
  }

  .weapon-platform {
    width: 360px;
    height: 130px;
  }

  .weapon-card {
    display: none;
  }
}

@media (max-width: 560px) {
  .weapon-stage {
    min-height: 340px;
  }

  .hero-weapon {
    transform: rotateZ(24deg) scale(.7);
  }

  .weapon-platform {
    width: 280px;
    height: 110px;
  }

  .weapon-grid,
  .weapon-shard {
    opacity: .35;
  }
}



















