:root {
  --bg: #07111d;
  --bg-2: #0d1828;
  --surface: rgba(12, 23, 38, 0.76);
  --surface-2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f8ff;
  --muted: #adc0d5;
  --orange: #f7a31e;
  --orange-2: #ff7b2f;
  --cyan: #4dd8ff;
  --cyan-2: #8df3ff;
  --purple: #8669ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247,163,30,0.14), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(77,216,255,0.14), transparent 22%),
    linear-gradient(180deg, #0b1524 0%, #07111d 46%, #050c15 100%);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 88%);
  z-index: -3;
}
.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}
.orb-a { width: 260px; height: 260px; top: 70px; left: -80px; background: linear-gradient(135deg, var(--orange), transparent 70%); }
.orb-b { width: 280px; height: 280px; top: 40%; right: -110px; background: linear-gradient(135deg, var(--cyan), transparent 70%); }
.orb-c { width: 200px; height: 200px; bottom: 10%; left: 30%; background: linear-gradient(135deg, var(--purple), transparent 70%); }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  z-index: 100;
}

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

.glass {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 13, 22, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
}
.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 4px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: white;
  display: block;
  margin: 2px auto;
  transition: .28s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 14px;
  right: 14px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(8, 15, 24, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: .28s ease;
}
.site-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.site-nav a,
.mobile-dock a {
  position: relative;
}
.site-nav a {
  padding: 13px 12px;
  border-radius: 14px;
  color: #dfebf8;
}
.site-nav a::after,
.mobile-dock a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: .28s ease;
  box-shadow: 0 0 14px rgba(77,216,255,0.35);
}
.site-nav a:hover,
.site-nav a.active { background: rgba(255,255,255,0.04); color: #fff; }
.site-nav a:hover::after,
.site-nav a.active::after,
.mobile-dock a.active::after { transform: scaleX(1); opacity: 1; }

.section {
  padding: 72px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.kicker {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.hero {
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding-top: 28px;
}
.hero-grid,
.split-grid,
.jobs-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
.hero-copy h1,
.section-heading h2,
.section-copy h2 {
  margin: 16px 0 14px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 10vw, 5.4rem);
}
.section-heading h2,
.section-copy h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
}
.hero-copy p,
.section-heading p,
.section-copy p,
.service-tile p,
.profile-content p,
.job-card span,
.contact-card span,
.contact-card a,
.form-note {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}
.btn {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #07111d;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 28px rgba(247,163,30,0.24);
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.btn-full { width: 100%; }

.hero-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: .28s ease;
}
.hero-socials a:hover {
  transform: translateY(-4px) rotate(-4deg);
  background: rgba(255,255,255,0.08);
}
.hero-socials svg {
  width: 20px;
  fill: white;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 12px;
}
.metric-card {
  border-radius: 22px;
  padding: 18px;
}
.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.metric-card span { color: var(--muted); }

.creative-stage {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at center, rgba(77,216,255,0.15), transparent 28%),
    linear-gradient(180deg, rgba(14,24,40,0.96), rgba(6,12,20,0.98));
}
.grid-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 78%);
}
.dashboard-card {
  position: absolute;
  border-radius: 24px;
  padding: 16px;
}
.card-primary { top: 18px; left: 14px; right: 70px; }
.card-secondary { bottom: 22px; left: 20px; width: 160px; }
.card-tertiary { right: 18px; bottom: 44px; width: 165px; }
.card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-2);
}
.dashboard-card h3 {
  margin: 12px 0 0;
  font-size: 1.4rem;
  line-height: 1.06;
}
.dashboard-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.mini-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.mini-bars span {
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(77,216,255,0.9), rgba(247,163,30,0.28));
  animation: grow 3.2s ease-in-out infinite;
}
.mini-bars span:nth-child(2) { animation-delay: .3s; }
.mini-bars span:nth-child(3) { animation-delay: .6s; }
.mini-bars span:nth-child(4) { animation-delay: .9s; }
.phone-preview {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.phone-preview div {
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
}
.phone-preview div:nth-child(1) { height: 90px; }
.phone-preview div:nth-child(2) { height: 10px; width: 70%; }
.phone-preview div:nth-child(3) { height: 10px; width: 46%; }
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ring-one { width: 180px; height: 180px; animation: spin 18s linear infinite; }
.ring-two { width: 280px; height: 280px; animation: spinReverse 22s linear infinite; }
.center-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: #07111d;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  box-shadow: 0 14px 40px rgba(0,0,0,0.34);
}

.vision-panel,
.career-panel {
  min-height: 330px;
  border-radius: 30px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.vision-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tiny-pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(255,255,255,0.06);
}
.tiny-pill.alt { color: var(--orange); }
.vision-wave {
  height: 120px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 50%, rgba(247,163,30,0.75), transparent 28%),
    radial-gradient(circle at 40% 50%, rgba(77,216,255,0.75), transparent 24%),
    radial-gradient(circle at 70% 50%, rgba(134,105,255,0.75), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
  animation: shimmer 7s linear infinite;
}
.vision-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.vision-points div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.vision-points strong { min-width: 84px; }
.vision-points span { color: var(--muted); text-align: right; }
.tag-cloud,
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tag-cloud span,
.profile-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e9f3ff;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}
.creative-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px;
  min-height: 220px;
  transition: transform .28s ease, border-color .28s ease;
}
.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(77,216,255,0.35);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-index {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.22);
}
.service-orbit {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(247,163,30,0.18), rgba(77,216,255,0.18));
  position: relative;
}
.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.service-orbit::before {
  width: 14px;
  height: 14px;
  background: white;
  top: 12px;
  left: 12px;
}
.service-orbit::after {
  inset: 12px;
  border: 2px solid rgba(255,255,255,0.8);
}
.orbit-b::before { top: 36px; left: 36px; }
.orbit-c::before { top: 12px; left: 36px; }
.orbit-d::before { top: 36px; left: 12px; }
.service-tile h3 {
  margin: 22px 0 10px;
  font-size: 1.34rem;
}

.team-showcase {
  display: grid;
  gap: 18px;
}
.team-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border-radius: 28px;
  padding: 18px;
}
.profile-image-wrap {
  position: relative;
}
.profile-image {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.profile-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #07111d;
  font-size: 0.78rem;
  font-weight: 800;
}
.profile-badge.alt { background: linear-gradient(135deg, var(--cyan), var(--cyan-2)); }
.profile-content h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}
.role {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.job-cards {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.job-card,
.contact-card {
  border-radius: 22px;
  padding: 18px;
}
.job-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 10px;
}
.career-panel {
  background:
    radial-gradient(circle at top left, rgba(247,163,30,0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(77,216,255,0.2), transparent 36%),
    linear-gradient(180deg, rgba(14,24,40,0.95), rgba(7,12,20,0.97));
}
.career-lines {
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.14);
}
.career-bubble {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.bubble-one { top: 50px; left: 20px; animation: floatY 5.8s ease-in-out infinite; }
.bubble-two { top: 130px; right: 24px; animation: floatY 4.8s ease-in-out infinite .4s; }
.bubble-three { bottom: 38px; left: 50%; transform: translateX(-50%); animation: floatY 5.4s ease-in-out infinite .7s; }

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-form {
  border-radius: 28px;
  padding: 20px;
}
.contact-form label {
  display: block;
  margin-bottom: 14px;
}
.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: #eaf3ff;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(77,216,255,0.46);
  box-shadow: 0 0 0 4px rgba(77,216,255,0.08);
  background: rgba(255,255,255,0.06);
}
.form-note { margin: 14px 2px 0; }

.site-footer {
  padding: 20px 0 calc(86px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(4, 10, 17, 0.74);
}
.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-shell a { color: var(--orange); }

.mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 10px;
  border-radius: 22px;
  z-index: 40;
  background: rgba(8, 15, 24, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.mobile-dock a {
  text-align: center;
  padding: 10px 6px 14px;
  color: #deebf7;
  font-size: 0.82rem;
  border-radius: 14px;
}
.mobile-dock a.active {
  background: rgba(255,255,255,0.04);
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.floating-slow { animation: floatY 6s ease-in-out infinite; }
.floating-fast { animation: floatY 4.8s ease-in-out infinite .35s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinReverse { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0deg); } }
@keyframes shimmer {
  0% { transform: translateX(0); filter: hue-rotate(0deg); }
  50% { transform: translateX(4px); filter: hue-rotate(18deg); }
  100% { transform: translateX(0); filter: hue-rotate(0deg); }
}
@keyframes grow {
  0%, 100% { transform: scaleY(.62); opacity: .7; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (min-width: 760px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .hero-grid,
  .split-grid,
  .jobs-grid,
  .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 34px; }
  .hero-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .creative-services { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .team-profile { grid-template-columns: 240px 1fr; align-items: center; padding: 22px; }
  .profile-image { max-width: 240px; }
  .site-footer { padding-bottom: 28px; }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .site-nav a {
    padding: 9px 0;
    background: none !important;
  }
  .mobile-dock { display: none; }
  .footer-shell {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
