﻿:root {
  color-scheme: dark;
  --bg: #050711;
  --bg-2: #0b1022;
  --panel: rgba(12, 18, 39, 0.78);
  --panel-strong: rgba(18, 26, 55, 0.92);
  --line: rgba(148, 163, 184, 0.24);
  --text: #f8fbff;
  --muted: #aab7cf;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --lime: #a3e635;
  --amber: #fbbf24;
  --violet: #a78bfa;
  --red: #fb7185;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(244, 114, 182, 0.15), transparent 24%),
    radial-gradient(circle at 54% 96%, rgba(163, 230, 53, 0.11), transparent 26%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 54%, #110a1f);
  color: var(--text);
  font-family: "Inter", "Noto Kufi Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

body[data-lang="ar"] {
  direction: ltr;
  font-family: "Noto Kufi Arabic", "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
}

body[data-lang="en"] {
  direction: ltr;
}

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

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

button {
  font: inherit;
}

#dataScene {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.keyword-field {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.34;
  filter: blur(0.2px);
  overflow: hidden;
}

.keyword-bubble {
  position: absolute;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(8, 13, 31, 0.24);
  color: rgba(248, 251, 255, 0.38);
  font-size: clamp(0.64rem, 1vw, 0.82rem);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: floatKeyword var(--duration) linear infinite;
}

@keyframes floatKeyword {
  from {
    transform: translate3d(var(--x), 108vh, 0) scale(var(--scale));
    opacity: 0;
  }
  12%,
  82% {
    opacity: 1;
  }
  to {
    transform: translate3d(calc(var(--x) + var(--drift)), -18vh, 0) scale(var(--scale));
    opacity: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 211, 238, 0.6);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(244, 114, 182, 0.22));
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.22);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: clamp(0.72rem, 0.88vw, 0.88rem);
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 13, 31, 0.56);
}

.site-nav a,
.lang-toggle {
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
}

.site-nav a:hover,
.lang-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.lang-toggle {
  min-width: 54px;
  border: 1px solid rgba(244, 114, 182, 0.38);
  background: rgba(244, 114, 182, 0.12);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: 760px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 52px;
}

.eyebrow,
.section-heading p {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.28rem, 2.35vw, 2.12rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.85;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
}

.primary-action {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #06101d;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.24);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 32px;
}

.signal-strip div,
.metric,
.insight-card,
.service-card,
.project-card,
.process-track article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-strip div {
  padding: 16px;
}

.signal-strip strong {
  display: block;
  font-size: 1.34rem;
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

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

.portrait-stage img {
  position: relative;
  z-index: 3;
  width: min(82vw, 390px);
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 34px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 10px rgba(255, 255, 255, 0.035),
    0 0 80px rgba(34, 211, 238, 0.2);
  transform: rotateY(-5deg) rotateX(2deg);
}

body[data-lang="en"] .portrait-stage img {
  transform: rotateY(5deg) rotateX(2deg);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbitSpin 13s linear infinite;
}

.orbit-one {
  width: 460px;
  height: 460px;
  transform: rotateX(64deg) rotateZ(15deg);
}

.orbit-two {
  width: 560px;
  height: 560px;
  border-color: rgba(244, 114, 182, 0.26);
  animation-duration: 19s;
  animation-direction: reverse;
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

.floating-kpi {
  position: absolute;
  z-index: 5;
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 13, 31, 0.74);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  animation: hoverCard 4.8s ease-in-out infinite;
}

.floating-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.floating-kpi strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
}

.kpi-a {
  top: 82px;
  inset-inline-start: 0;
  border-color: rgba(34, 211, 238, 0.46);
}

.kpi-b {
  top: 244px;
  inset-inline-end: 10px;
  border-color: rgba(244, 114, 182, 0.46);
  animation-delay: -1.4s;
}

.kpi-c {
  bottom: 62px;
  inset-inline-start: 60px;
  border-color: rgba(163, 230, 53, 0.46);
  animation-delay: -2.7s;
}

@keyframes hoverCard {
  0%,
  100% {
    transform: translateY(0) rotate(0.4deg);
  }
  50% {
    transform: translateY(-14px) rotate(-0.6deg);
  }
}


.mini-dashboard::before {
  content: "";
  position: absolute;
  top: 34px;
  inset-inline-start: -160px;
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.58), rgba(244, 114, 182, 0.22));
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.34);
  transform: rotate(-8deg);
  pointer-events: none;
}

.mini-dashboard {
  position: absolute;
  z-index: 6;
  inset-inline-end: 0;
  bottom: 0;
  width: min(94%, 420px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 13, 31, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mini-head,
.section-heading,
.contact-section,
.profile-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.mini-head span {
  color: var(--muted);
}

.mini-head b {
  color: var(--lime);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.metric {
  padding: 13px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 1.28rem;
}

.sparkline {
  width: 100%;
  height: 96px;
}

.sparkline path {
  fill: none;
  stroke: url(#spark);
  stroke-width: 5;
  stroke-linecap: round;
}

.sparkline rect {
  fill: rgba(255, 255, 255, 0.12);
}

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.section-heading h2,
.contact-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 2.9vw, 3.05rem);
  line-height: 1.05;
}

.profile-layout {
  align-items: stretch;
}

.profile-panel {
  flex: 0 0 38%;
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.13), transparent 46%),
    rgba(8, 13, 31, 0.74);
  box-shadow: var(--shadow);
}

.profile-panel h3,
.insight-card h3,
.service-card h3,
.project-card h3,
.process-track h3 {
  margin: 0;
  font-size: 1.25rem;
}

.profile-panel p,
.insight-card p,
.service-card p,
.project-card p,
.process-track p,
.contact-section p {
  color: var(--muted);
  line-height: 1.72;
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.tool-cloud span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.88rem;
}

.insight-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insight-card {
  min-height: 280px;
  padding: 24px;
}

.insight-icon,
.service-card > span,
.process-track article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #06101d;
  background: var(--cyan);
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 258px;
  padding: 22px;
}

.accent-cyan {
  border-color: rgba(34, 211, 238, 0.42);
}

.accent-pink {
  border-color: rgba(244, 114, 182, 0.42);
}

.accent-pink > span {
  background: var(--pink);
}

.accent-lime {
  border-color: rgba(163, 230, 53, 0.42);
}

.accent-lime > span {
  background: var(--lime);
}

.accent-amber {
  border-color: rgba(251, 191, 36, 0.42);
}

.accent-amber > span {
  background: var(--amber);
}

.accent-violet {
  border-color: rgba(167, 139, 250, 0.42);
}

.accent-violet > span {
  background: var(--violet);
}

.accent-red {
  border-color: rgba(251, 113, 133, 0.42);
}

.accent-red > span {
  background: var(--red);
}

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

.project-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.project-filter.is-active {
  color: #06101d;
  background: var(--lime);
}

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

.projects-grid {
  position: relative;
  isolation: isolate;
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(34, 211, 238, 0.13), transparent 23%),
    radial-gradient(circle at 76% 40%, rgba(244, 114, 182, 0.11), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.projects-grid::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  opacity: 0.52;
  background:
    linear-gradient(28deg, transparent 0 18%, rgba(34, 211, 238, 0.26) 18.2%, transparent 18.7% 100%),
    linear-gradient(152deg, transparent 0 24%, rgba(244, 114, 182, 0.2) 24.2%, transparent 24.7% 100%),
    linear-gradient(7deg, transparent 0 48%, rgba(163, 230, 53, 0.16) 48.2%, transparent 48.6% 100%);
  pointer-events: none;
}

.projects-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(34, 211, 238, 0.34) 0 3px, transparent 4px);
  background-size: 180px 132px;
  background-position: 28px 36px;
  opacity: 0.26;
  pointer-events: none;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.12), 0 0 28px rgba(34, 211, 238, 0.42);
}

.project-card::after {
  content: "";
  position: absolute;
  top: 21px;
  inset-inline-start: 28px;
  z-index: 1;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.58), transparent);
}

.project-card img,
.project-visual-code,
.project-visual-words {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #0c142c;
}

.project-card img {
  object-position: center top;
  filter: saturate(1.08) contrast(1.04);
}

.project-card > div:not(.project-visual-code):not(.project-visual-words) {
  padding: 20px;
}

.project-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 800;
}

.project-visual-code,
.project-visual-words {
  display: grid;
  place-items: center;
  padding: 24px;
}

.project-visual-code b {
  font-size: 3.6rem;
  color: var(--pink);
}

.project-visual-code span {
  color: var(--lime);
  font-family: Consolas, "Courier New", monospace;
}

.project-visual-words {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.project-visual-words span {
  margin: 0;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(244, 114, 182, 0.18);
}

.project-card.is-hidden {
  display: none;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-track article {
  position: relative;
  min-height: 230px;
  padding: 22px;
}

.process-track article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 39px;
  inset-inline-end: -20px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto 72px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 114, 182, 0.14), transparent 44%),
    linear-gradient(315deg, rgba(34, 211, 238, 0.16), transparent 48%),
    rgba(8, 13, 31, 0.78);
  box-shadow: var(--shadow);
}

@media (max-width: 1060px) {
  .hero-section,
  .profile-layout,
  .contact-section {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-section {
    display: block;
  }

  .hero-visual {
    margin-top: 48px;
  }

  .services-grid,
  .projects-grid,
  .process-track,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-panel {
    flex-basis: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
    padding-top: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 86px);
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-section,
  .section-band {
    width: min(100% - 22px, 1180px);
  }

  .hero-section {
    padding-top: 34px;
  }

  .signal-strip,
  .services-grid,
  .projects-grid,
  .process-track,
  .insight-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.28rem, 5vw, 1.62rem);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .keyword-bubble {
    opacity: 0.2;
    font-size: 0.66rem;
  }

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

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

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

  .floating-kpi {
    min-width: 106px;
    padding: 10px;
  }

  .kpi-a {
    top: 56px;
    inset-inline-start: 2px;
  }

  .kpi-b {
    top: 222px;
    inset-inline-end: 0;
  }

  .kpi-c {
    bottom: 60px;
    inset-inline-start: 18px;
  }

  .mini-dashboard {
    position: relative;
    width: 100%;
    margin-top: -36px;
  }

  .section-heading {
    display: block;
  }

  .project-card {
    min-height: auto;
  }

  .process-track article:not(:last-child)::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #dataScene,
  .keyword-field {
    display: none;
  }
}



@media (max-width: 760px) {
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy h1 {
    font-size: clamp(1.22rem, 4.8vw, 1.5rem);
    line-height: 1.14;
  }

  .hero-actions,
  .contact-actions {
    max-width: 100%;
  }

  .primary-action,
  .secondary-action {
    max-width: 100%;
    min-width: 0;
  }

  .signal-strip div,
  .brand,
  .brand span:not(.brand-mark) {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body,
  main,
  .site-header,
  .hero-section,
  .section-band,
  .contact-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header,
  .hero-section,
  .section-band,
  .contact-section {
    width: calc(100vw - 22px);
  }

  .hero-copy h1 {
    font-size: clamp(1.18rem, 4.6vw, 1.42rem);
    line-height: 1.18;
  }

  .hero-visual,
  .portrait-stage {
    max-width: 100%;
    overflow: hidden;
  }

  .orbit-one {
    width: min(300px, 78vw);
    height: min(300px, 78vw);
  }

  .orbit-two {
    width: min(340px, 88vw);
    height: min(340px, 88vw);
  }
}





body[data-lang="ar"] .brand,
body[data-lang="ar"] .site-nav,
body[data-lang="ar"] .hero-copy,
body[data-lang="ar"] .mini-dashboard,
body[data-lang="ar"] .section-heading,
body[data-lang="ar"] .profile-panel,
body[data-lang="ar"] .insight-card,
body[data-lang="ar"] .service-card,
body[data-lang="ar"] .project-card,
body[data-lang="ar"] .project-filters,
body[data-lang="ar"] .process-track article,
body[data-lang="ar"] .contact-section {
  direction: rtl;
}

@media (max-width: 760px) {
  body[data-lang="ar"] .hero-copy {
    text-align: center;
  }

  body[data-lang="ar"] .hero-actions,
  body[data-lang="ar"] .contact-actions {
    justify-content: center;
  }
}


.featured-project {
  grid-column: span 2;
  border-color: rgba(34, 211, 238, 0.42);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 48%),
    linear-gradient(315deg, rgba(244, 114, 182, 0.12), transparent 52%),
    rgba(8, 13, 31, 0.76);
}

.project-visual-worldcup {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 211, 238, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.18), rgba(5, 8, 18, 0.86));
}

.project-visual-worldcup::before,
.project-visual-worldcup::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.project-visual-worldcup::after {
  inset: 52px 82px;
  border-color: rgba(163, 230, 53, 0.22);
  transform: rotate(18deg);
}

.cup-orbit {
  position: absolute;
  width: 210px;
  height: 82px;
  border: 1px solid rgba(244, 114, 182, 0.34);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 0 36px rgba(244, 114, 182, 0.14);
}

.project-visual-worldcup b {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1;
}

.project-visual-worldcup span,
.project-visual-worldcup small {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font-weight: 800;
}

.project-visual-worldcup small {
  color: var(--muted);
  font-size: 0.76rem;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 999px;
  color: var(--text);
  background: rgba(34, 211, 238, 0.08);
  font-weight: 800;
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}


@media (max-width: 1060px) {
  .featured-project {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .featured-project {
    grid-column: span 1;
  }
}






