@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Bold.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Bold.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --ink: #121212;
  --muted: #a4a4a4;
  --muted-strong: rgba(255, 255, 255, 0.78);
  --muted-soft: rgba(255, 255, 255, 0.66);
  --line: rgba(0, 0, 0, 0.14);
  --soft: #f5f5f2;
  --soft-strong: #e9e8e2;
  --red: #e10600;
  --red-dark: #b90000;
  --red-glow: rgba(225, 6, 0, 0.38);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-line: rgba(255, 255, 255, 0.16);
  --glass-line-soft: rgba(255, 255, 255, 0.085);
  --hairline: rgba(255, 255, 255, 0.09);
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body,
body * {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  user-select: text;
}

body {
  margin: 0;
  font-family: "Thmanyah Sans", Arial, sans-serif;
  background: #000000;
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 82% 10%, rgba(225, 6, 0, 0.045), transparent 34%),
    radial-gradient(ellipse at 12% 88%, rgba(255, 255, 255, 0.028), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 30%, rgba(255, 255, 255, 0.008));
  opacity: 0.82;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, var(--red), rgba(255, 255, 255, 0.72), transparent);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.48);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: right;
  pointer-events: none;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

.film-grain {
  position: fixed;
  inset: -50%;
  z-index: 80;
  width: 200%;
  height: 200%;
  background:
    transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 480 480" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="3.2" numOctaves="1" stitchTiles="stitch"/%3E%3CfeColorMatrix type="saturate" values="0"/%3E%3CfeComponentTransfer%3E%3CfeFuncA type="table" tableValues="0 0.42"/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E') repeat;
  background-size: 96px 96px;
  opacity: 0.018;
  pointer-events: none;
  mix-blend-mode: normal;
  animation: grainAnimation 0.45s steps(6) infinite;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  padding-top: 18px;
  transition: padding 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34), transparent);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 56px));
  height: 70px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.44);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  pointer-events: none;
  transition: top 0.22s ease, height 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled::before {
  top: 10px;
  height: 64px;
  border-color: rgba(225, 6, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.86);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.42),
    inset 0 -1px 0 rgba(225, 6, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.legal-page .site-header {
  position: sticky;
  padding-top: 18px;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.legal-page .site-header::before {
  display: block;
}

.legal-page .nav-shell,
.legal-page .brand span {
  color: var(--white);
}

.legal-page .nav-shell {
  width: min(1180px, calc(100% - 56px));
  height: 70px;
  padding: 0 22px;
}

.legal-page .nav-links {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.36);
}

.legal-page .nav-links a {
  color: rgba(255, 255, 255, 0.76);
}

.legal-page .nav-links a:hover,
.legal-page .nav-links a:focus-visible {
  color: var(--white);
}

.legal-page .menu-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.legal-page .menu-toggle span {
  background: var(--white);
}

.nav-shell {
  position: relative;
  width: min(1180px, calc(100% - 56px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  padding: 0 22px;
}

.nav-shell .nav-links {
  order: 1;
}

.nav-shell .brand {
  order: 2;
}

.nav-shell .menu-toggle {
  order: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  direction: ltr;
  font-weight: 900;
}

.brand img {
  width: 126px;
  height: 50px;
  object-fit: contain;
  border: 0;
  background: transparent;
}

.brand span {
  direction: rtl;
  line-height: 1.2;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(225, 6, 0, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 22px rgba(225, 6, 0, 0.11);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(0.28);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.68);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(620px, 78svh, 760px);
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, transparent 0 26%, rgba(225, 6, 0, 0.16) 26% 27%, transparent 27% 100%),
    linear-gradient(245deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62% 63%, transparent 63% 100%),
    conic-gradient(from 215deg at 50% 58%, transparent, rgba(225, 6, 0, 0.18), transparent 28%, rgba(255, 255, 255, 0.08), transparent 48%);
  mix-blend-mode: screen;
  opacity: 0.92;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  z-index: 1;
  width: min(760px, 84vw);
  height: min(760px, 84vw);
  border: 1px solid rgba(225, 6, 0, 0.12);
  background:
    conic-gradient(from 130deg, transparent, rgba(225, 6, 0, 0.14), transparent 38%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 54%);
  filter: blur(1px);
  opacity: 0.42;
  transform: translateX(-50%) rotate(0deg);
  animation: haloSpin 28s linear infinite;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72) 48%, rgba(5, 5, 5, 0.98)),
    radial-gradient(circle at 50% 44%, rgba(44, 62, 80, 0.38), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(225, 6, 0, 0.18), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.13;
  filter: contrast(1.08) drop-shadow(0 0 46px rgba(225, 6, 0, 0.16));
  transform: scale(1.28);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.cinematic-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cinematic-lines span {
  position: absolute;
  height: 1px;
  width: 34vw;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.62), transparent);
  opacity: 0.4;
  animation: lineSweep 9s ease-in-out infinite;
}

.cinematic-lines span:nth-child(1) {
  top: 24%;
  right: 8%;
}

.cinematic-lines span:nth-child(2) {
  top: 52%;
  left: 10%;
  animation-delay: 1.6s;
}

.cinematic-lines span:nth-child(3) {
  bottom: 24%;
  right: 28%;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  max-width: 1160px;
  margin: 0 auto;
  padding: 104px 0 118px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(2.7rem, 5.7vw, 5.8rem);
  line-height: 1.36;
  font-weight: 900;
  overflow-wrap: break-word;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #d4d4d4 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px auto 0;
  border: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.hero-dashboard {
  width: min(960px, 100%);
  margin: 26px auto 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    linear-gradient(110deg, rgba(225, 6, 0, 0.24), transparent 48%),
    rgba(5, 5, 5, 0.8);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(225, 6, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
}

.execution-snapshot {
  width: var(--shell);
  max-width: 1160px;
  margin: 28px auto 0;
}

.dashboard-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-tabs span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
}

.dashboard-tabs span:first-child {
  background: rgba(225, 6, 0, 0.92);
  border-color: var(--red);
  color: var(--white);
}

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

.dashboard-grid article {
  min-height: 142px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  text-align: right;
  backdrop-filter: blur(24px);
  overflow-wrap: anywhere;
}

.dashboard-grid strong {
  color: var(--white);
  font-size: 1.08rem;
}

.dashboard-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-wrap: pretty;
}

.dashboard-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(225, 6, 0, 0.12);
}

.hero-stats div {
  min-height: 94px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.62);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.75;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid currentColor;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 38%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(225, 6, 0, 0.22);
}

.btn-primary {
  background:
    linear-gradient(135deg, #ff2a1f, var(--red) 48%, #8d0000);
  color: var(--white);
  border-color: var(--red);
  box-shadow:
    0 18px 54px rgba(225, 6, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow:
    0 22px 68px rgba(225, 6, 0, 0.38),
    0 0 34px rgba(225, 6, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-ghost {
  color: var(--white);
  border-color: var(--glass-line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.section {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
  padding: 124px 0;
  border-block-start: 1px solid rgba(255, 255, 255, 0.055);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-grid-line {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-inline: 1px solid rgba(255, 255, 255, 0.028);
  opacity: 0.5;
}

.section-grid-line::before,
.section-grid-line::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.032), transparent);
}

.section-grid-line::before {
  inset-inline-start: 33.333%;
}

.section-grid-line::after {
  inset-inline-start: 66.666%;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-enabled .reveal.is-visible {
  animation: revealUp 0.7s ease forwards;
}

.section-head {
  position: relative;
  max-width: 860px;
  margin-bottom: 46px;
  padding-top: 18px;
  isolation: isolate;
}

.section-head::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 88px;
  height: 3px;
  background: linear-gradient(270deg, var(--red), rgba(225, 6, 0, 0));
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.36);
  z-index: 1;
}

.section-head::after {
  content: "";
  position: absolute;
  inset: -34px -42px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.12), transparent 66%);
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.section h2 {
  margin: 0;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.42;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.section-note {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.9;
  text-wrap: pretty;
}

.quality-strip {
  position: relative;
  z-index: 4;
  width: var(--shell);
  max-width: 1160px;
  margin: -70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(5, 5, 5, 0.86);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.quality-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px 26px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.quality-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 4px;
  border: 1px solid rgba(225, 6, 0, 0.36);
  border-radius: 999px;
  color: var(--red);
  background: rgba(225, 6, 0, 0.08);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.18);
}

.quality-strip strong {
  color: var(--white);
  font-size: 1.08rem;
}

.quality-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.8;
}

.intent-bar {
  width: var(--shell);
  max-width: 1160px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.2), transparent 46%),
    rgba(5, 5, 5, 0.92);
  color: var(--white);
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
}

.intent-bar strong {
  margin-inline-end: 8px;
  color: var(--white);
  font-size: 1rem;
}

.intent-bar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.intent-bar a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.45);
}

.intent-bar a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.about-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  background:
    radial-gradient(circle at 82% 18%, rgba(225, 6, 0, 0.18), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(180deg, #000000 0%, #080808 52%, #000000 100%);
  color: var(--white);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(225, 6, 0, 0.12), transparent 42%),
    radial-gradient(ellipse at 18% 78%, rgba(255, 255, 255, 0.035), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%, rgba(225, 6, 0, 0.035) 76%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 88%, transparent);
  pointer-events: none;
}

.about-section .section-head,
.about-section .about-grid {
  position: relative;
  z-index: 1;
}

.about-section .section-head {
  margin-inline-start: 0;
  margin-inline-end: 0;
  text-align: start;
}

.about-section .section-note {
  color: rgba(255, 255, 255, 0.68);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.about-copy {
  position: relative;
  max-width: 700px;
  padding: 34px;
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 1.1rem;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.about-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), transparent 46%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.08), transparent 44%);
  pointer-events: none;
}

.about-copy p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.principles {
  display: grid;
  gap: 12px;
}

.audience-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.audience-strip span {
  position: relative;
  min-height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(24px);
}

.audience-strip span::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 58px;
  height: 3px;
  background: var(--red);
}

.principles article,
.service-card,
.work-item,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.principles article {
  padding: 24px;
  border-color: var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  color: var(--white);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.principles article:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.principles strong {
  color: var(--red);
  font-size: 0.92rem;
}

.principles h3,
.service-card h3,
.work-item h3 {
  margin: 8px 0 8px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.principles p,
.service-card p,
.work-item p,
.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.services-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 6, 0, 0.18), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #000000 0%, #0b0b0b 54%, #000000 100%);
  padding-inline: max(20px, calc((100% - 1160px) / 2));
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(225, 6, 0, 0.14), transparent 42%),
    radial-gradient(ellipse at 86% 84%, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.028), transparent 34%, rgba(225, 6, 0, 0.045) 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 88%, transparent);
  pointer-events: none;
}

.services-section .section-head,
.services-section .service-grid {
  position: relative;
  z-index: 1;
}

.services-section .section-head {
  color: var(--white);
}

.services-section .section-note {
  color: rgba(255, 255, 255, 0.66);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 14px;
}

.service-card {
  min-height: 286px;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-line-soft);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.032)),
    linear-gradient(315deg, rgba(225, 6, 0, 0.105), transparent 50%),
    rgba(255, 255, 255, 0.045);
  color: var(--white);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.22), transparent 44%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.1), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 28px auto;
  width: 86px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red));
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: right;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-card h3 {
  line-height: 1.42;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  gap: 2px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(225, 6, 0, 0.86)),
    var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 8px rgba(225, 6, 0, 0.08),
    0 20px 44px rgba(225, 6, 0, 0.18);
}

.service-icon span {
  font-size: 1.08rem;
  line-height: 1;
}

.service-icon small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  line-height: 1;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 54px rgba(225, 6, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-card:hover .service-icon {
  background: var(--white);
  color: var(--red);
}

.service-card:hover .service-icon small {
  color: rgba(225, 6, 0, 0.62);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card p {
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.9;
}

.service-card:first-child {
  grid-column: 1 / -1;
  min-height: 300px;
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(225, 6, 0, 0.24), rgba(225, 6, 0, 0.065) 38%, transparent 66%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(225, 6, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-card:first-child::after {
  inset: 92px auto 34px 36px;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, var(--red), transparent);
  transform: scaleY(0.42);
  transform-origin: top;
}

.service-card:first-child:hover::after {
  transform: scaleY(1);
}

.service-card:first-child h3 {
  max-width: 780px;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.38;
}

.service-card:first-child p {
  max-width: 680px;
  font-size: 1.05rem;
}

.service-card:last-child {
  grid-column: span 2;
}

.service-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card:hover .service-tags span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.service-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(225, 6, 0, 0.62);
}

.service-card:hover .service-cta {
  color: var(--white);
}

.process-section {
  position: relative;
  width: 100%;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(225, 6, 0, 0.14), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(180deg, #000000, #090909 58%, #000000),
    var(--black);
  color: var(--white);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(225, 6, 0, 0.12), transparent 44%),
    radial-gradient(ellipse at 18% 76%, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.045), transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 86%, transparent);
  pointer-events: none;
}

.process-section .section-head,
.process-section .process-grid {
  position: relative;
  z-index: 1;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.process-grid::before {
  content: "";
  position: absolute;
  inset: 64px 8% auto 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.65), transparent);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.26);
  pointer-events: none;
}

.process-grid article {
  position: relative;
  min-height: 260px;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    linear-gradient(315deg, rgba(225, 6, 0, 0.18), transparent 48%);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 74px;
  height: 3px;
  background:
    linear-gradient(90deg, transparent, var(--red));
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.46);
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: -54px auto auto -54px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(225, 6, 0, 0.28);
  transform: rotate(18deg);
}

.process-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035)),
    linear-gradient(315deg, rgba(225, 6, 0, 0.24), transparent 50%);
}

.process-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 6, 0, 0.42);
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--red);
  font-weight: 900;
}

.process-grid h3 {
  margin: 30px 0 10px;
  font-size: 1.28rem;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof-section {
  position: relative;
  width: 100%;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(225, 6, 0, 0.16), transparent 38%),
    radial-gradient(ellipse at 24% 68%, rgba(255, 255, 255, 0.045), transparent 32%),
    linear-gradient(180deg, #000000 0%, #070707 52%, #000000 100%);
  color: var(--white);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.12), transparent 28% 66%, rgba(225, 6, 0, 0.075)),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.04), transparent 38%);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.proof-section .section-head,
.proof-strip,
.proof-cta {
  position: relative;
  z-index: 1;
}

.proof-strip {
  display: grid;
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(225, 6, 0, 0.16), rgba(225, 6, 0, 0.04) 26%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.68);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24.8%, rgba(255, 255, 255, 0.1) 24.8% 25%, transparent 25% 49.8%, rgba(255, 255, 255, 0.1) 49.8% 50%, transparent 50% 74.8%, rgba(255, 255, 255, 0.1) 74.8% 75%, transparent 75% 100%),
    radial-gradient(circle at 85% 18%, rgba(225, 6, 0, 0.16), transparent 24%);
  pointer-events: none;
}

.proof-strip div {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 24px;
  text-align: center;
}

.proof-strip strong {
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  color: var(--white);
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
}

.proof-strip span {
  max-width: 210px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.7;
}

.proof-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.proof-cta .btn {
  min-width: min(100%, 360px);
}

.work-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  background:
    radial-gradient(circle at 78% 16%, rgba(225, 6, 0, 0.18), transparent 32%),
    radial-gradient(circle at 20% 74%, rgba(225, 6, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #000000 0%, #080808 48%, #000000 100%);
  color: var(--white);
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 14%, rgba(225, 6, 0, 0.14), transparent 42%),
    radial-gradient(ellipse at 16% 78%, rgba(225, 6, 0, 0.09), transparent 38%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.032), transparent 34%, rgba(225, 6, 0, 0.04) 72%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 90%, transparent);
  pointer-events: none;
}

.work-section::after {
  content: "";
  position: absolute;
  inset: 18% -12vw 0 -12vw;
  height: 82%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(225, 6, 0, 0.13), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  filter: blur(38px);
  opacity: 0.78;
  pointer-events: none;
}

.work-section .section-head,
.work-section .portfolio-showcase {
  position: relative;
  z-index: 1;
}

.work-section .section-head {
  margin-inline-start: 0;
  margin-inline-end: auto;
  color: var(--white);
  text-align: start;
}

.work-section .section-note {
  color: rgba(255, 255, 255, 0.66);
}

.clients-section {
  position: relative;
  width: 100%;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  overflow: hidden;
  background:
    radial-gradient(ellipse at 74% 20%, rgba(225, 6, 0, 0.18), transparent 42%),
    radial-gradient(ellipse at 20% 78%, rgba(225, 6, 0, 0.1), transparent 38%),
    linear-gradient(180deg, #000000 0%, #060606 54%, #000000 100%);
  color: var(--white);
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 58% 42%, rgba(255, 255, 255, 0.05), transparent 34%),
    radial-gradient(ellipse at 72% 36%, rgba(225, 6, 0, 0.1), transparent 46%),
    linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.035) 48%, transparent 66% 100%);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  pointer-events: none;
}

.clients-section .section-head,
.clients-grid {
  position: relative;
  z-index: 2;
}

.clients-mark {
  position: absolute;
  left: max(24px, calc((100% - 1160px) / 2));
  top: 54px;
  width: min(360px, 32vw);
  height: auto;
  opacity: 0.055;
  filter: blur(1px) drop-shadow(0 0 54px rgba(225, 6, 0, 0.18));
  transform: rotate(-8deg) scale(1.08);
  pointer-events: none;
  z-index: 1;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 14px;
}

.clients-grid article {
  position: relative;
  min-height: 172px;
  height: 100%;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.clients-grid article:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    linear-gradient(315deg, rgba(225, 6, 0, 0.09), transparent 58%),
    rgba(255, 255, 255, 0.055);
}

.clients-grid article:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
    linear-gradient(40deg, rgba(225, 6, 0, 0.12), transparent 54%),
    rgba(255, 255, 255, 0.055);
}

.clients-grid article::before {
  content: "";
  position: absolute;
  inset: auto auto -42px -42px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(225, 6, 0, 0.35);
  background: rgba(225, 6, 0, 0.08);
  transform: rotate(18deg);
}

.clients-grid article::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.42);
}

.clients-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.34);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.12),
    0 0 42px rgba(225, 6, 0, 0.08);
}

.clients-grid article:nth-child(2n):hover {
  transform: translateY(-5px);
}

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

.clients-grid strong {
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.1;
  font-weight: 900;
}

.clients-grid small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  font-weight: 700;
}

.portfolio-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 34px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.viewfinder-container {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.camera-rec {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.44);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff0000;
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.5);
  animation: pulseRec 1.5s infinite ease-in-out;
}

.frame-bracket {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-left {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.top-right {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
}

.bottom-left {
  bottom: 10px;
  left: 10px;
  border-right: 0;
  border-top: 0;
}

.bottom-right {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.portfolio-toolbar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.portfolio-toolbar a:first-child {
  background:
    linear-gradient(145deg, rgba(255, 42, 31, 0.96), rgba(185, 0, 0, 0.94));
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.portfolio-toolbar a:hover {
  transform: translateY(-2px);
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.portfolio-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025) 34%, rgba(225, 6, 0, 0.08)),
    linear-gradient(160deg, #080808, #121212 42%, #050505);
  color: var(--white);
  overflow: hidden;
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.52),
    0 0 80px rgba(225, 6, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  isolation: isolate;
  backdrop-filter: blur(24px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(225, 6, 0, 0.24) 42% 43%, transparent 43% 100%),
    linear-gradient(118deg, transparent 0 46%, rgba(255, 255, 255, 0.12) 46% 46.5%, transparent 46.5% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
  opacity: 0.75;
  pointer-events: none;
}

.portfolio-feature-media,
.portfolio-feature-copy {
  isolation: isolate;
}

.portfolio-feature::after {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.portfolio-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 52px 150px rgba(0, 0, 0, 0.48),
    0 0 90px rgba(225, 6, 0, 0.14);
}

.portfolio-feature-media {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.78), rgba(225, 6, 0, 0.2) 36%, transparent 66%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.12), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 24px),
    linear-gradient(160deg, #1a1a1a, #050505);
}

.portfolio-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 44%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.feature-frame {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(440px, 74%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  isolation: isolate;
  pointer-events: none;
}

.feature-frame img {
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.54;
  filter:
    blur(7px)
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.24))
    drop-shadow(0 0 62px rgba(225, 6, 0, 0.18));
}

.feature-frame span {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(42px);
  z-index: -1;
}

.feature-side-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.play-mark {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 26px 80px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(225, 6, 0, 0.16);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
}

.play-mark::after {
  content: "";
  position: absolute;
  inset: 28px 34px 28px 38px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.portfolio-feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px 54px 50px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 58%);
}

.portfolio-feature-copy::after {
  content: "";
  position: absolute;
  inset: auto -18% -30% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.18), transparent 64%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.portfolio-feature-copy::before {
  content: "";
  position: absolute;
  inset: 42px auto auto 54px;
  width: 86px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 34px rgba(225, 6, 0, 0.54);
}

.portfolio-feature-copy h3 {
  max-width: 620px;
  margin: 18px 0;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 5.05rem);
  line-height: 1.38;
  font-weight: 900;
  text-wrap: balance;
}

.portfolio-feature-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.95;
  text-wrap: pretty;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.feature-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.feature-bottom .work-metric {
  margin: 0;
}

.feature-bottom .video-link {
  margin: 0;
}

.video-portfolio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.portfolio-preview-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  padding-top: 10px;
  margin-bottom: 32px;
}

.portfolio-preview-grid::before {
  content: "";
  position: absolute;
  inset: 0 2% auto 2%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(225, 6, 0, 0.72), transparent);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.24);
  pointer-events: none;
}

.work-preview {
  position: relative;
  min-height: 392px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  transform-style: preserve-3d;
}

.work-preview:nth-child(1),
.work-preview:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.work-preview::before {
  content: "";
  position: absolute;
  inset: auto auto -56px -56px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(225, 6, 0, 0.44);
  background: rgba(225, 6, 0, 0.1);
  transform: rotate(16deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.work-preview:hover {
  transform: translateY(-5px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.34),
    0 0 46px rgba(225, 6, 0, 0.08);
}

.portfolio-preview-grid .work-preview:nth-child(even) {
  margin-top: 0;
}

.portfolio-preview-grid .work-preview:nth-child(3) {
  margin-top: 0;
}

.portfolio-links-head {
  position: relative;
  margin: 38px 0 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(90deg, rgba(225, 6, 0, 0.16), transparent 55%);
  overflow: hidden;
}

.portfolio-links-head::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.42);
}

.portfolio-links-head .section-kicker {
  margin-bottom: 6px;
}

.portfolio-links-head h3 {
  margin: 0;
  color: var(--white);
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  line-height: 1.35;
}

.portfolio-links-head span {
  display: block;
  max-width: 680px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.portfolio-links-grid {
  margin-top: 0;
}

.portfolio-links-grid .work-preview {
  min-height: 350px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.035) 42%, rgba(0, 0, 0, 0.34)),
    rgba(255, 255, 255, 0.06);
}

.portfolio-links-grid .work-preview::before {
  width: 160px;
  height: 160px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(225, 6, 0, 0.58) 52% 53%, transparent 53%),
    rgba(225, 6, 0, 0.08);
  transform: rotate(12deg);
}

.portfolio-links-grid .work-preview::after {
  content: "فتح الصفحة";
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.portfolio-links-grid .work-preview:hover {
  border-color: rgba(225, 6, 0, 0.55);
  background:
    linear-gradient(160deg, rgba(225, 6, 0, 0.26), rgba(255, 255, 255, 0.055) 44%, rgba(0, 0, 0, 0.28)),
    rgba(255, 255, 255, 0.07);
}

.portfolio-links-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-link-card {
  position: relative;
  min-height: 236px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "type title"
    "url url"
    "copy copy"
    "metric action";
  align-content: start;
  gap: 14px 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.62)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 5px 0 0 rgba(225, 6, 0, 0.82),
    0 20px 60px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.page-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px);
  opacity: 0.34;
}

.page-link-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 44px;
  height: 1px;
  background: rgba(225, 6, 0, 0.8);
  transform: rotate(-28deg);
}

.page-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(225, 6, 0, 0.16), rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 5px 0 0 var(--red),
    0 28px 84px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(225, 6, 0, 0.08);
}

.page-link-card__type,
.page-link-card strong,
.page-link-card__url,
.page-link-card p,
.page-link-card small,
.page-link-card__action {
  position: relative;
  z-index: 1;
}

.page-link-card__type {
  grid-area: type;
  align-self: start;
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(225, 6, 0, 0.34);
  border-radius: 4px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(225, 6, 0, 0.1);
}

.page-link-card strong {
  grid-area: title;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.35;
}

.page-link-card__url {
  grid-area: url;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  direction: ltr;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.26);
}

.page-link-card p {
  grid-area: copy;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.page-link-card small {
  grid-area: metric;
  align-self: end;
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
}

.page-link-card__action {
  grid-area: action;
  justify-self: end;
  align-self: end;
  padding: 9px 13px;
  border: 1px solid rgba(225, 6, 0, 0.42);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(225, 6, 0, 0.22);
}

.work-preview:hover::before {
  transform: rotate(16deg) translate(12px, -12px);
}

.work-thumb {
  position: relative;
  min-height: 176px;
  aspect-ratio: 1 / 0.72;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 30% 26%, rgba(225, 6, 0, 0.28), transparent 28%),
    linear-gradient(135deg, #1a1a1a, #050505);
}

.work-thumb::before,
.work-thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.work-thumb::after {
  inset: auto 20px 20px auto;
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--red);
  clip-path: polygon(34% 24%, 34% 76%, 78% 50%);
}

.work-thumb img {
  position: relative;
  z-index: 1;
  width: min(58%, 156px);
  max-height: 118px;
  object-fit: contain;
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.work-preview:hover .work-thumb img {
  opacity: 1;
  transform: translateZ(18px) scale(1.04);
}

.thumb-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 16px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-thumb-story {
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.35), transparent 52%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.14), transparent 42%),
    #191919;
}

.work-thumb-story .thumb-label,
.work-thumb-digital .thumb-label,
.work-thumb-campaign .thumb-label {
  color: var(--white);
}

.work-thumb-digital {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #242424, #050505);
}

.work-thumb-campaign {
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.38), transparent 48%),
    #111111;
}

.work-preview strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.35;
  min-height: 58px;
}

.work-preview > span:last-child {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  min-height: 64px;
}

.work-metric {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
}

.video-card {
  position: relative;
  min-height: 246px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  color: var(--white);
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  transform-style: preserve-3d;
}

.video-card:nth-child(3n + 1) {
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.15), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.08), transparent 46%);
  opacity: 0.82;
  pointer-events: none;
}

.video-card::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  color: var(--red);
  clip-path: polygon(34% 24%, 34% 76%, 78% 50%);
  background: currentColor;
  opacity: 0.16;
}

.video-card:hover {
  transform: translateY(-5px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.065);
}

.video-index {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.video-card strong {
  position: relative;
  z-index: 1;
  max-width: 88%;
  font-size: 1.28rem;
  line-height: 1.35;
}

.video-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.video-link {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-section {
  position: relative;
  width: 100%;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  background:
    radial-gradient(circle at 80% 18%, rgba(225, 6, 0, 0.2), transparent 34%),
    radial-gradient(circle at 14% 86%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(135deg, #000000, #0b0b0b 42%, #000000),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 76% 18%, rgba(225, 6, 0, 0.14), transparent 42%),
    radial-gradient(ellipse at 18% 82%, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(115deg, transparent 0 30%, rgba(225, 6, 0, 0.045) 50%, transparent 70% 100%);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 88%, transparent);
  pointer-events: none;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(225, 6, 0, 0.2), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.contact-panel p,
.contact-panel .section-note {
  color: rgba(255, 255, 255, 0.72);
}

.consultation-form {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

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

.form-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-field span,
.form-field legend {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 15px 16px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    rgba(0, 0, 0, 0.42);
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(225, 6, 0, 0.88);
  background: rgba(0, 0, 0, 0.58);
  outline: 3px solid rgba(255, 0, 0, 0.72);
  outline-offset: 3px;
  box-shadow:
    0 0 0 3px rgba(225, 6, 0, 0.14),
    0 0 34px rgba(225, 6, 0, 0.12);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.need-chips {
  align-content: start;
}

.need-chips legend {
  margin-bottom: 9px;
}

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

.need-chips legend {
  grid-column: 1 / -1;
}

.need-chips label {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.need-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.need-chips label:has(input:checked) {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.9);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(225, 6, 0, 0.18);
}

.need-chips label:has(input:focus-visible) {
  outline: 3px solid rgba(255, 0, 0, 0.72);
  outline-offset: 3px;
}

.form-submit {
  position: relative;
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  font-size: 1.08rem;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(225, 6, 0, 0.28);
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
  transition: background 0.18s ease, transform 0.16s ease, box-shadow 0.18s ease;
}

.form-hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  text-align: center;
}

.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.24), transparent 34%, rgba(0, 0, 0, 0.12));
  transform: translateX(76%);
  transition: transform 0.28s ease;
}

.form-submit::after {
  content: "←";
  position: absolute;
  left: 26px;
  color: var(--white);
  font-size: 1.35rem;
  transform: translateX(10px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 28px 90px rgba(225, 6, 0, 0.38);
}

.form-submit:hover::before,
.form-submit:focus-visible::before {
  transform: translateX(-76%);
}

.form-submit:hover::after,
.form-submit:focus-visible::after {
  transform: translateX(0);
  opacity: 1;
}

.form-submit span {
  position: relative;
  z-index: 1;
}

.contact-method strong {
  color: var(--ink);
}

.contact-method span {
  color: var(--muted);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(225, 6, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.scroll-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 24;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(5, 5, 5, 0.74);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(225, 6, 0, 0.58);
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.42), rgba(255, 255, 255, 0.05)),
    rgba(5, 5, 5, 0.88);
  transform: translateY(-2px);
}

.floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

@keyframes heroDrift {
  from {
    transform: scale(1.18) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.24) translate3d(2%, -1%, 0);
  }
}

@keyframes haloSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineSweep {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.12;
  }

  50% {
    transform: translateX(-34px);
    opacity: 0.52;
  }
}

@keyframes grainAnimation {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-1%, -1%);
  }

  30% {
    transform: translate(-2%, -3%);
  }

  50% {
    transform: translate(-1%, 2%);
  }

  70% {
    transform: translate(2%, -2%);
  }

  90% {
    transform: translate(-3%, 1%);
  }
}

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

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .film-grain,
  .rec-dot {
    animation: none !important;
  }
}

.contact-panel h2 {
  max-width: 720px;
  margin-bottom: 26px;
  line-height: 1.2;
  text-wrap: balance;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.contact-method {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 104px;
  height: 100%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-method::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 44%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.contact-method::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 64px;
  height: 4px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(225, 6, 0, 0.48);
}

.contact-method strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.02rem;
}

.contact-method span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.contact-method[href]:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.contact-method[href]:hover::after {
  opacity: 1;
}

.contact-method.is-pending {
  opacity: 0.68;
}

.footer {
  width: var(--shell);
  min-height: 260px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(180px, 0.7fr));
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 6, 0, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.footer-identity {
  display: grid;
  gap: 14px;
}

.footer-identity img {
  width: 136px;
  height: auto;
}

.footer-identity p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-links,
.footer-social,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links,
.footer-social {
  flex-direction: column;
}

.footer a {
  width: fit-content;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--red);
  transform: translateX(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.56);
}

.footer p {
  margin: 0;
}

.about-section,
.services-section,
.process-section,
.proof-section,
.work-section,
.clients-section,
.contact-section {
  background-blend-mode: screen, normal, normal;
}

.about-section::before,
.services-section::before,
.process-section::before,
.proof-section::before,
.work-section::before,
.clients-section::before,
.contact-section::before {
  opacity: 0.82;
}

.principles article p,
.process-grid p,
.proof-strip span,
.work-preview p,
.video-card p,
.clients-grid p,
.contact-method span,
.footer-identity p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.footer-main {
  border-color: var(--glass-line-soft);
  background:
    radial-gradient(ellipse at 20% 18%, rgba(225, 6, 0, 0.12), transparent 36%),
    radial-gradient(ellipse at 88% 88%, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026)),
    rgba(5, 5, 5, 0.82);
}

.footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.not-found-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(225, 6, 0, 0.2), transparent 34%),
    linear-gradient(180deg, #000000, #090909 54%, #000000);
  color: var(--white);
}

.not-found-page::before,
.not-found-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.not-found-page::before {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 9px),
    linear-gradient(115deg, transparent 0 24%, rgba(225, 6, 0, 0.16) 32%, transparent 44% 100%);
  opacity: 0.28;
}

.not-found-page::after {
  background:
    radial-gradient(circle at 28% 32%, rgba(225, 6, 0, 0.18), transparent 18%),
    radial-gradient(circle at 74% 74%, rgba(255, 255, 255, 0.07), transparent 20%);
  filter: blur(16px);
  opacity: 0.62;
}

.not-found-shell {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 56px 28px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  text-align: center;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
}

.not-found-code {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 0;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(12rem, 34vw, 32rem);
  font-weight: 900;
  line-height: 0.74;
  color: rgba(255, 255, 255, 0.045);
  text-shadow:
    calc(var(--nf-x, 0) * 18px) calc(var(--nf-y, 0) * 18px) 0 rgba(225, 6, 0, 0.16),
    0 0 90px rgba(225, 6, 0, 0.16);
  transform:
    translate(-50%, -50%)
    translate(calc(var(--nf-x, 0) * 22px), calc(var(--nf-y, 0) * 22px))
    rotate(calc(var(--nf-x, 0) * -2deg));
  pointer-events: none;
  user-select: none;
}

.not-found-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.12), transparent),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.04) 58px 59px);
  opacity: 0.7;
  pointer-events: none;
}

.not-found-shell > * {
  position: relative;
  z-index: 1;
}

.not-found-shell h1 {
  margin: 0;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 1.35;
}

.not-found-shell p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 80% 8%, rgba(225, 6, 0, 0.16), transparent 38%),
    radial-gradient(ellipse at 16% 88%, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(180deg, #000000 0%, #050505 52%, #000000 100%);
  color: var(--white);
}

.legal-hero,
.legal-content {
  width: var(--shell);
  max-width: 960px;
  margin: 0 auto;
}

.legal-hero {
  padding: 132px 0 42px;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Thmanyah Serif Display", "Thmanyah Sans", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.18;
  color: var(--white);
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
}

.legal-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.legal-content {
  display: grid;
  gap: 14px;
  padding: 0 0 96px;
}

.legal-content article {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--glass-line-soft);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 18%, rgba(225, 6, 0, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.legal-content article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  width: 82px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red));
  opacity: 0.9;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--white);
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.legal-content ul {
  margin: 0;
  padding-inline-start: 22px;
}

@supports (background: linear-gradient(in oklab, #000000, #111111)) {
  body::before {
    background:
      radial-gradient(in oklab circle at 82% 10%, rgba(225, 6, 0, 0.052), rgba(225, 6, 0, 0.022) 18%, transparent 42%),
      radial-gradient(in oklab circle at 14% 88%, rgba(225, 6, 0, 0.04), rgba(225, 6, 0, 0.016) 22%, transparent 46%),
      linear-gradient(in oklab, rgba(255, 255, 255, 0.012), transparent 42%, rgba(255, 255, 255, 0.008));
  }

  .hero {
    background:
      linear-gradient(in oklab, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.86) 48%, rgba(5, 5, 5, 0.99)),
      radial-gradient(in oklab circle at 50% 44%, rgba(44, 62, 80, 0.16), rgba(44, 62, 80, 0.055) 22%, transparent 46%),
      radial-gradient(in oklab circle at 18% 70%, rgba(225, 6, 0, 0.105), rgba(225, 6, 0, 0.035) 24%, transparent 48%),
      #000000;
  }

  .about-section,
  .services-section,
  .process-section,
  .proof-section,
  .work-section,
  .clients-section,
  .contact-section {
    background:
      radial-gradient(in oklab ellipse at 78% 18%, rgba(225, 6, 0, 0.082), rgba(225, 6, 0, 0.024) 28%, transparent 58%),
      radial-gradient(in oklab ellipse at 16% 82%, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01) 25%, transparent 56%),
      linear-gradient(in oklab, #000000 0%, #050505 46%, #000000 100%);
  }

  .about-section::before,
  .services-section::before,
  .process-section::before,
  .proof-section::before,
  .work-section::before,
  .clients-section::before,
  .contact-section::before {
    background:
      radial-gradient(in oklab ellipse at 72% 22%, rgba(225, 6, 0, 0.06), rgba(225, 6, 0, 0.02) 24%, transparent 54%),
      radial-gradient(in oklab ellipse at 18% 78%, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01) 24%, transparent 52%),
      linear-gradient(in oklab 115deg, transparent 0%, rgba(255, 255, 255, 0.014) 48%, transparent 100%);
  }

  .portfolio-feature-media,
  .work-thumb,
  .video-card,
  .service-card,
  .clients-grid article,
  .contact-panel {
    background-color: #111111;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    height: 70px;
    display: flex;
    justify-content: space-between;
    width: min(calc(100% - 28px), 390px);
    padding: 0 12px;
  }

  .site-header {
    padding-top: 12px;
  }

  .site-header::before {
    top: 12px;
    width: min(calc(100% - 28px), 390px);
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  }

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

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    color: var(--muted);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--ink);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: var(--shell);
    max-width: var(--shell);
    margin-inline-start: auto;
    margin-inline-end: auto;
    padding: 92px 0 82px;
    text-align: center;
  }

  .about-grid,
  .service-grid,
  .contact-panel,
  .process-grid,
  .video-portfolio,
  .portfolio-preview-grid,
  .clients-grid,
  .portfolio-feature {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 90px 0;
  }

  .quality-strip {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .intent-bar {
    padding-inline: 20px;
    border-radius: 22px;
  }

  .quality-strip div {
    min-height: 96px;
    padding-inline: 20px;
  }

  .execution-snapshot {
    margin-top: 22px;
  }

  .portfolio-feature,
  .portfolio-feature-media {
    min-height: 360px;
  }

  .service-card:first-child {
    grid-column: auto;
    min-height: 286px;
    padding: 28px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .clients-grid article,
  .clients-grid article:nth-child(2n),
  .clients-grid article:nth-child(3n) {
    min-height: 172px;
    transform: none;
  }

  .clients-grid article:nth-child(2n):hover {
    transform: translateY(-5px);
  }

  .portfolio-feature {
    border-radius: 8px;
  }

  .portfolio-feature-copy {
    order: 1;
    padding: 38px;
  }

  .portfolio-feature-media {
    order: 2;
  }

  .feature-frame {
    width: min(380px, 72%);
    inset: 50% auto auto 50%;
  }

  .clients-mark {
    width: min(220px, 42vw);
    top: 42px;
    opacity: 0.1;
  }

  .portfolio-preview-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 12px;
  }

  .portfolio-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .portfolio-preview-grid .work-preview {
    scroll-snap-align: center;
  }

  .portfolio-preview-grid .work-preview:nth-child(even),
  .portfolio-preview-grid .work-preview:nth-child(3) {
    margin-top: 0;
  }

  .portfolio-links-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
    overflow: visible;
    overscroll-behavior-inline: auto;
    scroll-snap-type: none;
  }

  .portfolio-links-head {
    margin-top: 30px;
    padding: 20px;
  }

  .video-portfolio {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 12px;
  }

  .video-portfolio::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    scroll-snap-align: center;
  }

  .work-preview {
    min-height: 0;
  }

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

  .dashboard-grid article {
    min-height: 104px;
    align-content: center;
  }

  .process-grid article {
    min-height: 210px;
  }

  .process-grid::before {
    display: none;
  }

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

  .proof-strip::before {
    background:
      linear-gradient(90deg, transparent 0 49.7%, rgba(255, 255, 255, 0.1) 49.7% 50%, transparent 50% 100%),
      linear-gradient(180deg, transparent 0 49.7%, rgba(255, 255, 255, 0.1) 49.7% 50%, transparent 50% 100%);
  }

  .proof-strip div {
    min-height: 138px;
    padding: 22px 18px;
  }

  .process-grid h3 {
    margin-top: 34px;
  }

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

  .form-grid,
  .need-chips {
    grid-template-columns: 1fr;
  }

  .form-submit {
    min-height: 62px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .nav-shell,
  .hero-content,
  .footer {
    width: min(calc(100% - 28px), 390px);
    margin-inline-start: auto;
    margin-inline-end: auto;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 108px;
    height: 42px;
  }

  .brand span {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.98rem;
  }

  .nav-links {
    inset-inline: 14px;
  }

  .hero h1 {
    font-size: 1.54rem;
    line-height: 1.42;
    max-width: 100%;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-dashboard {
    display: none;
  }

  .dashboard-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dashboard-tabs span {
    min-height: 38px;
  }

  .cinematic-lines span {
    width: 70vw;
  }

  .intent-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .hero-actions,
  .hero-stats {
    gap: 10px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-stats div {
    min-height: 76px;
    padding: 12px 14px;
  }

  .hero-stats strong {
    font-size: 1.28rem;
  }

  .hero-stats span {
    font-size: 0.8rem;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .section,
  .services-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section h2 {
    font-size: 1.85rem;
    line-height: 1.46;
  }

  .section-note {
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .service-card,
  .clients-grid article,
  .video-card,
  .principles article,
  .process-grid article {
    padding: 22px;
  }

  .service-card {
    min-height: 238px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip::before {
    background: linear-gradient(180deg, transparent 0 24.8%, rgba(255, 255, 255, 0.1) 24.8% 25%, transparent 25% 49.8%, rgba(255, 255, 255, 0.1) 49.8% 50%, transparent 50% 74.8%, rgba(255, 255, 255, 0.1) 74.8% 75%, transparent 75% 100%);
  }

  .proof-strip div {
    min-height: 118px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .audience-strip {
    grid-template-columns: 1fr;
  }

  .page-link-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "type"
      "title"
      "url"
      "copy"
      "metric"
      "action";
    padding: 22px;
  }

  .page-link-card__action {
    justify-self: start;
  }

  .portfolio-feature-copy {
    padding: 30px 24px 28px;
  }

  .portfolio-feature-copy h3 {
    font-size: 2.12rem;
    line-height: 1.42;
  }

  .portfolio-feature-media {
    min-height: 280px;
    padding: 22px;
  }

  .portfolio-feature-copy::before {
    inset: 24px auto auto 24px;
    width: 62px;
  }

  .feature-frame {
    inset: 50% auto auto 50%;
    width: min(260px, 78%);
  }

  .clients-mark {
    left: 18px;
    top: 28px;
    width: 150px;
    opacity: 0.08;
  }

  .play-mark {
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }

  .play-mark::after {
    inset: 24px 30px 24px 34px;
  }

  .feature-points,
  .feature-bottom {
    gap: 8px;
  }

  .floating-contact {
    right: 14px;
    left: auto;
    bottom: 12px;
    min-height: 50px;
    min-width: 118px;
  }

  .scroll-top {
    left: 14px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-social,
  .footer-legal {
    flex-direction: row;
    justify-content: flex-start;
  }

  .work-section {
    padding-bottom: 116px;
  }

  .footer {
    padding: 24px 0;
  }

  .legal-page .nav-shell {
    width: min(100% - 28px, 1180px);
  }

  .legal-hero {
    padding-top: 112px;
  }

  .legal-content article {
    padding: 24px;
  }
}


/* ==========================================================================
   PREMIUM UPGRADES DESIGN SYSTEM (HERO AURA, WIZARD FORM)
   ========================================================================== */

/* 2. Interactive Hero Aura Background Styles */
.hero-interactive-aura {
  position: absolute;
  inset: -150px;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(225, 6, 0, 0.13) 0%, transparent 64%);
  filter: blur(80px);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s ease;
  will-change: transform;
}

.hero:hover .hero-interactive-aura,
.hero-interactive-aura.has-moved {
  opacity: 1;
}

/* 3. Interactive Multi-Step Consultation Wizard Styles */
.wizard-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 420px;
  margin: 0 auto 36px;
  padding: 0 10px;
  direction: rtl;
}

.progress-bar-track {
  position: absolute;
  inset: 50% 10px auto 10px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.9);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 900;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.progress-step.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
  box-shadow: 
    0 0 18px rgba(225, 6, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.progress-step.is-complete {
  border-color: var(--red);
  background: rgba(10, 10, 10, 0.9);
  color: var(--red);
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.16);
}

.form-step {
  display: none;
  opacity: 0;
  transform: translate3d(25px, 0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-step.is-active {
  display: grid;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Step 1 Visual Card Grids */
.project-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.project-type-card {
  position: relative;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.42);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.project-type-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.project-type-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-type-card:has(input:checked) {
  border-color: var(--red);
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.12), transparent), rgba(0, 0, 0, 0.58);
  color: #ffffff;
  box-shadow: 
    0 14px 44px rgba(225, 6, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.project-type-card .card-icon {
  font-family: "Thmanyah Sans", "Arial Black", Arial, sans-serif;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 6px;
  line-height: 1;
}

.project-type-card h4 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.4;
}

/* Navigation buttons row */
.wizard-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  grid-column: 1 / -1;
}

.wizard-actions .btn-prev {
  flex: 0 0 118px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wizard-actions .btn-prev:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.wizard-actions .btn-next {
  flex: 1;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  background: var(--red);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(225, 6, 0, 0.24);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wizard-actions .btn-next:hover {
  background: var(--red-dark);
  box-shadow: 0 24px 62px rgba(225, 6, 0, 0.36);
}

.form-step-title {
  grid-column: 1 / -1;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 9px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease, visibility 0.26s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(225, 6, 0, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.video-modal-panel {
  position: relative;
  width: min(1060px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(4, 4, 4, 0.86);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition: transform 0.26s ease;
}

.video-modal.is-open .video-modal-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.video-modal.is-instagram-video .video-modal-panel {
  width: min(430px, calc((100svh - 170px) * 9 / 16), 100%);
}

.video-modal.is-instagram-video .video-modal-frame {
  aspect-ratio: 9 / 16;
  background: #000000;
}

.video-modal.is-instagram-video .video-modal-frame iframe {
  background: #ffffff;
}

.video-modal.is-instagram-video .video-modal-head {
  padding-block: 12px;
}

.video-modal.is-instagram-video .video-modal-fallback {
  padding-block: 10px 12px;
  font-size: 0.86rem;
}

.video-modal.is-youtube-video .video-modal-panel {
  width: min(1060px, 100%);
}

.video-modal.is-youtube-video .video-modal-frame {
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-head .section-kicker {
  margin: 0;
}

.video-modal-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  border-color: rgba(225, 6, 0, 0.64);
  background: rgba(225, 6, 0, 0.18);
  color: var(--red);
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.12), transparent 36%),
    #000000;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.video-modal-loader {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: "Thmanyah Sans", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
}

.video-modal-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.video-modal-fallback a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(225, 6, 0, 0.52);
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--white);
  font-weight: 900;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.video-modal-fallback a:hover,
.video-modal-fallback a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}

body.video-modal-open {
  overflow: hidden;
}

/* Animations for step validation errors */
@keyframes shake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  20%, 60% { transform: translate3d(-6px, 0, 0); }
  40%, 80% { transform: translate3d(6px, 0, 0); }
}

.has-error {
  animation: shake 0.4s ease;
  border-color: var(--red) !important;
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 580px) {
  .project-type-grid {
    grid-template-columns: 1fr;
  }
  
  .wizard-progress {
    max-width: 320px;
  }
  
  .video-modal {
    padding: 10px;
  }

  .video-modal-fallback {
    align-items: stretch;
    flex-direction: column;
  }
}
