:root {
  --ink: #0b1618;
  --muted: #607173;
  --line: #cfdeda;
  --paper: #f4f8f6;
  --white: #ffffff;
  --teal: #10a99c;
  --teal-deep: #063b37;
  --amber: #f2b84b;
  --coral: #e45d4f;
  --acid: #d9fb61;
  --violet: #9d7cff;
  --night: #071214;
  --shadow: 0 24px 70px rgba(7, 18, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #081719 0, var(--paper) 720px),
    var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(5, 16, 18, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.client-logo,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.78fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 86px;
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(217, 251, 97, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 169, 156, 0.2) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 251, 97, 0.76), transparent);
  animation: scanLine 4.5s ease-in-out infinite;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 15, 18, 0.98) 0%, rgba(4, 15, 18, 0.82) 48%, rgba(4, 15, 18, 0.5) 100%),
    linear-gradient(135deg, rgba(217, 251, 97, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(228, 93, 79, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(4, 15, 18, 0.18), rgba(4, 15, 18, 0.82));
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.hero-brand {
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 6px rgba(217, 251, 97, 0.04);
  backdrop-filter: blur(14px);
}

.hero-brand img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 7.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #061315;
  background: var(--teal);
  background: linear-gradient(135deg, var(--acid), var(--teal));
  box-shadow: 0 16px 34px rgba(16, 169, 156, 0.3);
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 510px;
}

.signal-board {
  position: relative;
  min-height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 46px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.signal-board::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 251, 97, 0.18);
  border-radius: 8px;
  content: "";
}

.signal-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 28px rgba(217, 251, 97, 0.8);
  animation: pulseNode 2.8s ease-in-out infinite;
}

.signal-dot.one {
  top: 17%;
  left: 28%;
}

.signal-dot.two {
  top: 48%;
  right: 20%;
  animation-delay: 700ms;
}

.signal-dot.three {
  bottom: 19%;
  left: 37%;
  animation-delay: 1.3s;
}

.signal-line {
  position: absolute;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, transparent, rgba(217, 251, 97, 0.82), transparent);
  animation: signalMove 3.6s ease-in-out infinite;
}

.line-one {
  top: 31%;
  left: 20%;
  width: 64%;
  transform: rotate(20deg);
}

.line-two {
  right: 12%;
  bottom: 32%;
  width: 58%;
  transform: rotate(-24deg);
  animation-delay: 1.2s;
}

.solution-card {
  position: absolute;
  display: grid;
  gap: 4px;
  width: min(230px, 58%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 18, 20, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  animation: cardFloat 5.6s ease-in-out infinite;
}

.solution-card small {
  color: var(--acid);
  font-weight: 900;
}

.solution-card strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.solution-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

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

.card-two {
  top: 42%;
  right: 8%;
  animation-delay: 900ms;
}

.card-three {
  left: 16%;
  bottom: 11%;
  animation-delay: 1.7s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--white);
  background: #071214;
}

.trust-strip div {
  padding: 28px clamp(18px, 4vw, 52px);
  background: linear-gradient(135deg, rgba(217, 251, 97, 0.09), rgba(255, 255, 255, 0.04));
}

.trust-strip strong,
.trust-strip span,
address span,
address a {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 33, 37, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 169, 156, 0.44);
  box-shadow: 0 24px 62px rgba(7, 18, 20, 0.12);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card p,
.approach-copy p,
.contact-details p {
  color: var(--muted);
}

.clients {
  background: var(--white);
}

.tech-stack {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 18, 20, 0.96), rgba(6, 59, 55, 0.92)),
    var(--night);
}

.tech-stack::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  animation: gridDrift 20s linear infinite reverse;
}

.tech-stack .section-heading,
.stack-grid {
  position: relative;
  z-index: 1;
}

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

.stack-grid article {
  display: grid;
  min-height: 180px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.stack-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 251, 97, 0.46);
  background: rgba(217, 251, 97, 0.1);
}

.stack-grid span {
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 900;
}

.stack-grid strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.client-logo {
  min-height: 170px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  box-shadow: var(--shadow);
}

.dazn img {
  width: min(132px, 42vw);
  height: auto;
}

.al-futtaim {
  gap: 16px;
  color: #12315f;
  font-weight: 900;
}

.af-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #12315f;
  font-size: 1.25rem;
}

.af-name {
  font-size: clamp(1.7rem, 4vw, 3.3rem);
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
}

.approach-list {
  display: grid;
  gap: 14px;
}

.approach-list div {
  padding: 22px 24px;
  border-left: 5px solid var(--teal);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 33, 37, 0.08);
}

.approach-list strong {
  display: block;
  margin-bottom: 4px;
}

.approach-list span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  color: var(--white);
  background: #102125;
}

.contact-details p,
.contact-details .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.contact-details .eyebrow {
  color: #f1a848;
}

address {
  margin-top: 28px;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
}

address span,
address a {
  color: rgba(255, 255, 255, 0.78);
}

address a {
  margin-top: 8px;
  color: #8ddad1;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(141, 218, 209, 0.28);
  border-color: #8ddad1;
}

.form-button {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #071214;
  font-size: 0.92rem;
}

.site-footer a {
  color: #8ddad1;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88vh;
  }

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

  .signal-board {
    min-height: 380px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 15, 18, 0.94), rgba(4, 15, 18, 0.55)),
      linear-gradient(180deg, rgba(4, 15, 18, 0.26), rgba(4, 15, 18, 0.86));
  }

  .trust-strip,
  .service-grid,
  .client-grid,
  .approach,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    padding-top: 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero {
    min-height: 94vh;
    padding-top: 154px;
  }

  h1 {
    font-size: 2.9rem;
  }

  .button {
    width: 100%;
  }

  .hero-brand {
    max-width: 100%;
  }

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

  .signal-board {
    min-height: 330px;
  }

  .solution-card {
    width: 190px;
    padding: 14px;
  }

  .card-one {
    left: 7%;
  }

  .card-two {
    right: 5%;
  }

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

  .dazn img {
    width: 118px;
  }

  .al-futtaim {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 76px 76px;
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(-34px);
  }

  50% {
    opacity: 0.82;
    transform: translateY(28px);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    opacity: 0.44;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.32);
  }
}

@keyframes signalMove {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}
