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

:root {
  --bg: #070711;
  --bg-2: #0d0d1b;
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.68);
  --soft: rgba(247, 244, 238, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --purple: #8b5cf6;
  --blue: #22d3ee;
  --pink: #ff3d9a;
  --gold: #e9c46a;
  --card: rgba(255, 255, 255, 0.075);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 92, 246, 0.2), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.15), transparent 30%),
    radial-gradient(circle at 55% 90%, rgba(255, 61, 154, 0.12), transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.orb-one {
  top: 120px;
  left: -160px;
  background: var(--purple);
}

.orb-two {
  right: -160px;
  bottom: 120px;
  background: var(--blue);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 36px));
  height: 72px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 7, 17, 0.72);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.45);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #090913;
  font-size: 14px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--text);
  border: 0;
  font-size: 28px;
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 19;
  top: 100px;
  left: 18px;
  right: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 7, 17, 0.94);
  backdrop-filter: blur(18px);
  padding: 16px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 14px;
  background: var(--soft);
}

.section {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding-top: 150px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(70px, 12vw, 164px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #fff, #b6a4ff 45%, #77e8ff);
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(32px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  max-width: 900px;
}

.hero h2 {
  max-width: 760px;
}

.hero-copy,
.large-text {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
  max-width: 760px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.32);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

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

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: var(--card);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.main-card {
  width: min(420px, 100%);
  min-height: 460px;
  padding: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    conic-gradient(from 220deg, transparent, rgba(139, 92, 246, 0.45), transparent, rgba(34, 211, 238, 0.35), transparent);
  animation: rotate 12s linear infinite;
}

.main-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background: rgba(8, 8, 20, 0.88);
}

.main-card > * {
  position: relative;
  z-index: 2;
}

.mini-label {
  justify-self: start;
  align-self: start;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pulse-circle {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.18), transparent 62%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.65), rgba(34, 211, 238, 0.55));
  box-shadow: 0 0 90px rgba(34, 211, 238, 0.22);
}

.pulse-circle span {
  font-family: "Playfair Display", serif;
  font-size: 92px;
  font-weight: 800;
}

.main-card p {
  color: var(--muted);
  line-height: 1.6;
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.card-a {
  top: 70px;
  left: 10px;
}

.card-b {
  right: 0;
  top: 240px;
}

.card-c {
  left: 30px;
  bottom: 76px;
}

.section-heading {
  margin-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 30px;
  align-items: stretch;
}

.about-card,
.contact-card,
.why-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  background: var(--card);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-card p,
.glass-card p,
.project-item p,
.step p,
.why-card li,
.contact-card p,
.contact-card small {
  color: var(--muted);
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

.glass-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: var(--card);
  backdrop-filter: blur(20px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.42);
}

.glass-card span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 54px;
}

.glass-card h3 {
  font-size: 25px;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.project-list {
  display: grid;
  gap: 12px;
}

.project-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.055);
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 20px;
  align-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-item:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.09);
}

.project-item span {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  min-height: 320px;
}

.step strong {
  color: var(--gold);
  font-size: 15px;
}

.step h3 {
  font-size: 34px;
  letter-spacing: -0.06em;
  margin: 82px 0 16px;
}

.why-card {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(34, 211, 238, 0.12)),
    var(--card);
}

.why-card ul {
  display: grid;
  gap: 16px;
  list-style: none;
}

.why-card li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.contact-card {
  text-align: center;
  padding: 60px 34px;
}

.contact-card h2 {
  margin: 0 auto;
}

.contact-card p {
  margin: 20px auto 0;
  font-size: 20px;
}

.contact-card .hero-actions {
  justify-content: center;
}

.contact-card small {
  display: block;
  margin-top: 22px;
  font-size: 13px;
}

footer {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

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

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

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

  .menu-btn {
    display: block;
  }

  .hero,
  .about-grid,
  .why-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .services-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    height: 64px;
    border-radius: 20px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 76px 0;
  }

  .hero {
    padding-top: 130px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(66px, 19vw, 96px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 58px);
  }

  .hero-stats,
  .services-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .main-card {
    min-height: 380px;
  }

  .pulse-circle {
    width: 160px;
    height: 160px;
  }

  .pulse-circle span {
    font-size: 72px;
  }

  .floating-card {
    font-size: 13px;
  }

  .card-a {
    top: 20px;
    left: 0;
  }

  .card-b {
    right: 0;
    top: 180px;
  }

  .card-c {
    left: 0;
    bottom: 34px;
  }

  .about-card,
  .contact-card,
  .why-card,
  .glass-card,
  .step,
  .project-item {
    border-radius: 24px;
    padding: 24px;
  }

  .step {
    min-height: auto;
  }

  .step h3 {
    margin-top: 44px;
  }

  footer {
    flex-direction: column;
  }
}
/* C Network Hero Logo Upgrade */
.hero-logo-wrap {
  position: relative;
  width: min(520px, 100%);
  margin: 0 0 34px;
  display: inline-block;
  animation: logoEntrance 1.2s ease forwards;
}

.hero-logo {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(34, 211, 238, 0.28))
    drop-shadow(0 0 38px rgba(139, 92, 246, 0.26));
  animation: logoFloat 5s ease-in-out infinite;
}

.logo-shine {
  position: absolute;
  top: -20%;
  left: -75%;
  width: 42%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: rotate(18deg);
  animation: logoShine 4.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-content h2 {
  margin-top: 8px;
  max-width: 720px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.03;
}

.hero-copy {
  margin-top: 26px;
  max-width: 640px;
  line-height: 1.75;
}

.brand {
  gap: 10px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 16px;
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

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

@keyframes logoShine {
  0% {
    left: -75%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  38% {
    left: 135%;
    opacity: 0;
  }
  100% {
    left: 135%;
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .hero-logo-wrap {
    width: min(360px, 100%);
    margin-bottom: 24px;
  }

  .hero-content h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
}
/* CNLmusic Card Fix */
.main-card {
  overflow: hidden;
  padding: 34px 28px;
}

.cnl-logo-box {
  width: 190px;
  height: 190px;
  margin: 30px auto 18px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 35px rgba(34, 211, 238, 0.22),
    0 0 55px rgba(139, 92, 246, 0.20);
  animation: cnlFloat 5s ease-in-out infinite;
}

.cnl-logo {
  width: 78%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

.cnl-title {
  font-size: 34px;
  letter-spacing: -0.05em;
  margin: 8px 0 12px;
}

.cnl-copy {
  max-width: 330px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 244, 238, 0.72);
}

@keyframes cnlFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@media (max-width: 640px) {
  .cnl-logo-box {
    width: 150px;
    height: 150px;
    margin: 24px auto 16px;
  }

  .cnl-logo {
    max-width: 118px;
  }

  .cnl-title {
    font-size: 28px;
  }

  .cnl-copy {
    font-size: 14px;
    max-width: 280px;
  }

  .floating-card {
    display: none;
  }
}
/* Header Logo Icon Fix */
.brand-mark {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.brand-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: static !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
/* Premium Intro Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.28), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.20), transparent 36%),
    #070711;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.site-loader.hide-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  padding: 30px;
  transform: translateY(16px);
  animation: loaderEnter 1s ease forwards;
}

.loader-kicker {
  color: #22d3ee;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.loader-inner h2 {
  font-size: clamp(46px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #a78bfa 45%, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.loader-inner p {
  margin-top: 22px;
  color: rgba(247, 244, 238, 0.72);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-line {
  width: min(360px, 78vw);
  height: 2px;
  margin: 34px auto 0;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border-radius: 999px;
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #22d3ee, #8b5cf6, transparent);
  animation: loaderLine 1.45s ease-in-out infinite;
}

@keyframes loaderEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes loaderLine {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(240%);
  }
}