:root {
  --black: #000000;
  --violet: #7D39EB;
  --lime: #C6FF33;
  --white: #FFFFFF;
  --surface: #0a0a0a;
  --surface-strong: #050505;
  --text-muted: rgba(255, 255, 255, 0.68);
  --border-soft: rgba(255, 255, 255, 0.12);
  --shadow-violet: 0 0 42px rgba(125, 57, 235, 0.28);
  --radius-large: 2rem;
  --radius-medium: 1.25rem;
  --nav-height: 5.5rem;
  --max-width: 76rem;
  --font-primary: "DM Sans", sans-serif;
  --font-titles: "Bodoni Moda", serif;
  font-synthesis: none;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/Primary/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/Primary/DMSans-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/Titles/BodoniModa-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(125, 57, 235, 0.18), transparent 28%),
    radial-gradient(circle at 70% 15%, rgba(125, 57, 235, 0.08), transparent 16%),
    radial-gradient(circle at 50% 120%, rgba(125, 57, 235, 0.16), transparent 30%);
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 7rem 7rem;
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}

body.is-transitioning {
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

main {
  position: relative;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.section,
.section-frame {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-shadow: 0 0 14px rgba(198, 255, 51, 0.6), 0 0 30px rgba(198, 255, 51, 0.2);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-titles);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.4rem, 12vw, 8.6rem);
}

h2 {
  font-size: clamp(2.25rem, 6vw, 2.75rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

p {
  margin: 0;
  color: var(--text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

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

.button-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: var(--shadow-violet);
  animation: buttonPulse 3s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 0 24px rgba(198, 255, 51, 0.6), 0 0 56px rgba(198, 255, 51, 0.22);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: var(--nav-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link img,
.footer-brand img {
  width: 8rem;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--white);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--lime);
}

.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  height: 1px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle::before {
  top: 1rem;
}

.nav-toggle::after {
  bottom: 1rem;
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-home {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 1rem) 0 5rem;
}

.hero-inner {
  min-height: 70svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 1rem) 0 3rem;
}

.starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.starfield-global {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
}

.hero-ring {
  position: absolute;
  width: min(56vw, 38rem);
  aspect-ratio: 1;
  top: 50%;
  right: clamp(-5rem, 4vw, 3rem);
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    conic-gradient(
      from 0deg,
      rgba(125, 57, 235, 0.22) 0deg,
      rgba(125, 57, 235, 0.06) 52deg,
      transparent 94deg,
      transparent 166deg,
      rgba(255, 255, 255, 0.04) 206deg,
      rgba(125, 57, 235, 0.18) 258deg,
      transparent 312deg,
      rgba(255, 255, 255, 0.08) 360deg
    );
  box-shadow:
    0 0 0 2.5rem rgba(125, 57, 235, 0.08),
    0 0 0 5rem rgba(255, 255, 255, 0.03),
    0 0 8rem rgba(125, 57, 235, 0.24),
    inset 0 0 4rem rgba(255, 255, 255, 0.08);
  animation: ringSpin 16s linear infinite;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-ring::before {
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-right-color: rgba(125, 57, 235, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(125, 57, 235, 0.12);
  box-shadow:
    0 0 1.5rem rgba(125, 57, 235, 0.16),
    inset 0 0 1.25rem rgba(255, 255, 255, 0.03);
  animation: ringSpinReverse 12s linear infinite;
}

.hero-ring::after {
  inset: 23%;
  background:
    radial-gradient(circle at center, rgba(125, 57, 235, 0.26) 0%, rgba(125, 57, 235, 0.08) 30%, transparent 60%),
    radial-gradient(circle at center, rgba(0, 0, 0, 1) 36%, transparent 37%);
  animation: ringPulse 7s ease-in-out infinite;
}

.hero-ring-small {
  width: min(42vw, 26rem);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.hero-meta-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 52rem;
}

.hero-meta-item {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta-item span {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.hero-meta-item p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 24rem;
}

.hero-title > span {
  display: inline-block;
}

.hero-intro-wash {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 34%, rgba(18, 7, 41, 0.8) 68%, rgba(125, 57, 235, 0.24) 100%),
    radial-gradient(circle at 70% 50%, rgba(125, 57, 235, 0.22), transparent 26%);
  transform-origin: left center;
}

.hero-home .hero-content {
  min-height: calc(100svh - var(--nav-height) - 6rem);
  align-content: center;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  max-width: 11ch;
}

.hero-black {
  background: linear-gradient(135deg, var(--violet) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-copy {
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 1.2rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
}

.scroll-indicator span {
  width: 0.35rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--lime);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.marquee-star {
  color: var(--violet);
  font-weight: 700;
}

.service-grid,
.testimonial-grid,
.values-grid,
.team-grid,
.process-grid,
.related-grid {
  display: grid;
  gap: 1.2rem;
}

.service-grid,
.testimonial-grid,
.values-grid,
.team-grid,
.process-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-card,
.testimonial-card,
.value-item,
.team-card,
.process-step,
.article-card,
.contact-form-card,
.contact-info,
.story-panel,
.share-box,
.author-box,
.project-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.service-card,
.testimonial-card,
.value-item,
.team-card,
.process-step,
.article-card,
.contact-form-card,
.contact-info,
.story-panel,
.share-box,
.project-card {
  padding: 1.35rem;
}

.service-card::before,
.testimonial-card::before,
.value-item::before,
.team-card::before,
.process-step::before,
.article-card::before,
.contact-form-card::before,
.contact-info::before,
.story-panel::before,
.share-box::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 57, 235, 0.95), rgba(198, 255, 51, 0.6), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.testimonial-card:hover,
.value-item:hover,
.team-card:hover,
.process-step:hover,
.article-card:hover,
.contact-form-card:hover,
.contact-info:hover,
.story-panel:hover,
.share-box:hover,
.project-card:hover {
  box-shadow: var(--shadow-violet);
  border-color: rgba(125, 57, 235, 0.4);
}

.service-card:hover::before,
.testimonial-card:hover::before,
.value-item:hover::before,
.team-card:hover::before,
.process-step:hover::before,
.article-card:hover::before,
.contact-form-card:hover::before,
.contact-info:hover::before,
.story-panel:hover::before,
.share-box:hover::before,
.project-card:hover::before {
  transform: scaleX(1);
}

.service-number,
.value-item span,
.process-step span {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.service-card a,
.section-link a,
.orbit-overlay a,
.project-overlay a,
.article-card a,
.team-card a,
.social-links a {
  color: var(--white);
  transition: color 0.35s ease;
}

.service-card:hover a,
.orbit-card:hover a,
.project-card:hover a,
.article-card:hover a,
.team-card:hover a,
.social-links a:hover {
  color: var(--lime);
}

.services-preview .service-grid {
  gap: 1.4rem;
}

.service-card-feature {
  min-height: 24rem;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 78% 22%, rgba(125, 57, 235, 0.32), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(125, 57, 235, 0.3);
  box-shadow: 0 0 32px rgba(125, 57, 235, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.45s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card-feature:hover {
  border-color: rgba(125, 57, 235, 0.6);
  box-shadow: 0 0 52px rgba(125, 57, 235, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.service-card-feature:hover {
  transform: translateY(-8px);
}

.service-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
}

.service-card-body h3 {
  max-width: 10ch;
}

.service-card-body p:not(.service-number) {
  max-width: 24rem;
}

.service-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 12% 10% auto auto;
  width: 11rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 2rem rgba(125, 57, 235, 0.05),
    0 0 0 4rem rgba(255, 255, 255, 0.015);
}

.service-orbit,
.service-core {
  position: absolute;
  border-radius: 50%;
}

.service-orbit {
  width: 13rem;
  aspect-ratio: 1;
  top: 8%;
  right: 6%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 3rem rgba(125, 57, 235, 0.08);
  animation: orbitDrift 18s linear infinite;
}

.service-orbit::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(125, 57, 235, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(125, 57, 235, 0.18);
  animation: orbitDriftReverse 11s linear infinite;
}

.service-core {
  width: 4.5rem;
  aspect-ratio: 1;
  top: calc(8% + 4.25rem);
  right: calc(6% + 4.25rem);
  background:
    radial-gradient(circle at 42% 38%, rgba(125, 57, 235, 0.55), rgba(23, 9, 48, 0.96) 62%);
  box-shadow:
    0 0 4rem rgba(125, 57, 235, 0.18),
    inset -1rem -1rem 2rem rgba(0, 0, 0, 0.38);
}

.service-core::after {
  content: "";
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--violet);
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 1.4rem rgba(125, 57, 235, 0.65);
}

.service-visual-branding .service-orbit,
.service-visual-branding .service-core {
  transform: scale(1.04);
}

.service-visual-web::before {
  inset: 14% auto auto 10%;
}

.service-visual-web .service-orbit {
  top: 10%;
  left: 8%;
  right: auto;
}

.service-visual-web .service-core {
  top: calc(10% + 3.5rem);
  left: calc(8% + 3.6rem);
  right: auto;
}

.service-visual-photo .service-orbit {
  width: 14rem;
  top: 4%;
  right: 4%;
}

.service-visual-photo .service-core {
  width: 5rem;
  top: calc(4% + 4.2rem);
  right: calc(4% + 4.3rem);
}

.service-visual-marketing::before {
  inset: auto 8% 16% auto;
}

.service-visual-marketing .service-orbit {
  top: auto;
  bottom: 10%;
  right: 8%;
}

.service-visual-marketing .service-core {
  top: auto;
  bottom: calc(10% + 4.2rem);
  right: calc(8% + 4.2rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-large);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(125, 57, 235, 0.08), rgba(255, 255, 255, 0.01));
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-violet);
  border-color: rgba(125, 57, 235, 0.32);
}

.stat-item-lead {
  display: grid;
  gap: 0.85rem;
  align-content: end;
  min-height: 16rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(125, 57, 235, 0.28), transparent 18%),
    linear-gradient(180deg, rgba(125, 57, 235, 0.12), rgba(255, 255, 255, 0.015));
}

.stat-item-lead h2 {
  max-width: 10ch;
}

.stat-item-lead p:last-child {
  max-width: 28rem;
}

.stat-item-metric {
  min-height: 15rem;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 78% 18%, rgba(125, 57, 235, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.stat-orbit {
  position: absolute;
  inset: 1.1rem auto auto 1.1rem;
  width: 6.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1.2rem rgba(125, 57, 235, 0.04),
    inset 0 0 1.5rem rgba(125, 57, 235, 0.08);
  animation: orbitDrift 16s linear infinite;
}

.stat-orbit::before,
.stat-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.stat-orbit::before {
  inset: 18%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(125, 57, 235, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(125, 57, 235, 0.18);
  animation: orbitDriftReverse 9s linear infinite;
}

.stat-orbit::after {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--violet);
  bottom: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 1rem rgba(125, 57, 235, 0.75);
}

.stat-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lime);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.92;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 18px rgba(198, 255, 51, 0.7), 0 0 42px rgba(198, 255, 51, 0.35), 0 0 80px rgba(198, 255, 51, 0.15);
}

.stat-item span {
  color: var(--white);
  opacity: 0.78;
  position: relative;
  z-index: 1;
}

.orbit-grid {
  display: grid;
  gap: 1.2rem;
}

.work-showcase {
  display: grid;
  gap: 3rem;
  position: relative;
}

.clients-section {
  padding-top: 1rem;
}

.clients-head {
  margin-bottom: 1.25rem;
}

.clients-head p:last-child {
  max-width: 34rem;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 1;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 1), transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: clientsMarquee 26s linear infinite;
}

.clients-track span {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.clients-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.clients-track img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(55deg);
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  overflow: hidden;
}

.clients-logo-grid img {
  height: 60px;
  width: 100%;
  object-fit: contain;
  padding: 1.5rem 2rem;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  transition: opacity 0.3s ease, filter 0.3s ease, background 0.3s ease;
}

.clients-logo-grid img:nth-child(6n) {
  border-right: none;
}

.clients-logo-grid img:nth-last-child(-n+2) {
  border-bottom: none;
}

.clients-logo-grid img:hover {
  opacity: 1;
  background: rgba(255,255,255,0.03);
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(55deg);
}

@media (max-width: 768px) {
  .clients-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .clients-logo-grid img:nth-child(6n) {
    border-right: 1px solid var(--border-soft);
  }
  .clients-logo-grid img:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-logo-grid img:nth-child(3n) {
    border-right: 1px solid var(--border-soft);
  }
  .clients-logo-grid img:nth-child(2n) {
    border-right: none;
  }
}

.work-feature {
  position: relative;
}

.work-feature-media {
  width: 100%;
  border-radius: 0.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
  background-color: #090909;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.work-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.work-feature:hover .work-feature-media {
  transform: scale(1.015);
  filter: brightness(1.05);
}

.work-feature-media-event {
  min-height: 21rem;
 /* background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(90deg, rgba(36, 5, 3, 0.12), rgba(0, 0, 0, 0.1)),
    radial-gradient(circle at 14% 18%, rgba(225, 65, 18, 0.9), transparent 18%),
    linear-gradient(90deg, rgba(143, 34, 8, 0.95) 0 18%, transparent 18% 32%, rgba(205, 118, 40, 0.9) 32% 42%, transparent 42% 56%, rgba(93, 47, 20, 0.8) 56% 100%),
    linear-gradient(180deg, rgba(67, 35, 18, 0.7), rgba(22, 9, 4, 0.95));*/
}

.work-feature-media-auto {
  min-height: 16rem;
  background:
    radial-gradient(circle at 55% 78%, rgba(255, 255, 255, 0.08), transparent 10%),
    linear-gradient(180deg, rgba(246, 235, 198, 0.1), transparent 32%),
    radial-gradient(circle at 45% 74%, rgba(21, 80, 182, 0.95), transparent 18%),
    linear-gradient(180deg, rgba(245, 239, 210, 0.88) 0 28%, rgba(28, 59, 121, 0.92) 28% 100%);
}

.work-feature-media-editorial {
  min-height: 19rem;
  background:
    radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.06), transparent 12%),
    radial-gradient(circle at 72% 28%, rgba(125, 57, 235, 0.24), transparent 14%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.1), rgba(0, 0, 0, 0.4)),
    linear-gradient(135deg, rgba(37, 16, 58, 0.92), rgba(9, 9, 9, 1));
}

.work-feature-meta {
  padding-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-feature-meta h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 0.35rem;
  max-width: 17ch;
}

.work-feature-meta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  min-width: 3.5rem;
  text-align: right;
}

.work-feature-offset {
  width: min(100%, 29rem);
  margin-inline: auto;
}

.work-feature-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--white);
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 0.45rem rgba(255, 255, 255, 0.04);
}

.work-feature-wide::after,
.work-feature-offset::after {
  content: "";
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.work-feature-wide::after {
  height: 3.2rem;
  bottom: -3.2rem;
}

.work-feature-offset::after {
  height: 2.6rem;
  bottom: -2.7rem;
}

.orbit-card {
  position: relative;
  min-height: 20rem;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.orbit-visual,
.project-art,
.article-art,
.team-avatar {
  background:
    radial-gradient(circle at 25% 25%, rgba(198, 255, 51, 0.12), transparent 18%),
    radial-gradient(circle at 70% 30%, rgba(125, 57, 235, 0.55), transparent 38%),
    linear-gradient(140deg, rgba(125, 57, 235, 0.16), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.orbit-visual {
  position: absolute;
  inset: 0;
}

.orbit-branding {
  background:
    radial-gradient(circle at 60% 40%, rgba(125, 57, 235, 0.7), transparent 16%),
    linear-gradient(135deg, rgba(125, 57, 235, 0.2), transparent 45%),
    radial-gradient(circle at 35% 72%, rgba(198, 255, 51, 0.3), transparent 14%),
    var(--surface);
}

.orbit-web {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 25% 25%, rgba(125, 57, 235, 0.55), transparent 25%),
    radial-gradient(circle at 80% 75%, rgba(198, 255, 51, 0.2), transparent 18%),
    var(--surface);
}

.orbit-photo {
  background:
    radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 75% 20%, rgba(125, 57, 235, 0.6), transparent 22%),
    linear-gradient(200deg, rgba(125, 57, 235, 0.18), transparent 50%),
    var(--surface);
}

.orbit-meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.7));
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgb(125, 57, 235);
  border: 1px solid rgba(125, 57, 235, 0.4);
  color: var(--white);
  font-size: 0.8rem;
}

.orbit-overlay {
  display: grid;
  gap: 0.65rem;
  align-self: end;
}

.dot-rating {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.dot-rating span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--violet);
}

.testimonials-section .section-head p:last-child {
  max-width: 38rem;
}

.testimonial-grid {
  gap: 1.35rem;
}

.testimonial-card {
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(125, 57, 235, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #0a0a0a;
}

.testimonial-card-lead {
  min-height: 21rem;
}

.testimonial-card-side {
  min-height: 14.5rem;
}

.testimonial-quote {
  color: var(--white);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.45;
  max-width: 30rem;
}

.testimonial-card-side .testimonial-quote {
  font-size: 1rem;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-person {
  display: grid;
  gap: 0.2rem;
}

.testimonial-person h3 {
  font-size: 1.18rem;
}

.testimonial-person span {
  color: rgba(255, 255, 255, 0.58);
}

.cta-panel {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(125, 57, 235, 0.3);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 12% 18%, rgba(125, 57, 235, 0.28), transparent 22%),
    radial-gradient(circle at 88% 78%, rgba(125, 57, 235, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 16rem;
  aspect-ratio: 1;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 2rem rgba(125, 57, 235, 0.04),
    0 0 0 4rem rgba(255, 255, 255, 0.015),
    inset 0 0 2rem rgba(125, 57, 235, 0.08);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  max-width: 38rem;
}

.cta-copy p:last-child {
  max-width: 32rem;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

.footer-shell {
  width: min(calc(100% - 2rem), 100rem);
  margin-inline: auto;
  padding: 4.5rem 0 1.5rem;
  display: grid;
  gap: 2.25rem;
}

.footer-intro {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.35rem;
}

.footer-intro img {
  width: 7.5rem;
  height: auto;
}

.footer-intro p {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.35;
}

.footer-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--white);
  margin-inline: auto;
}

.footer-heading {
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column {
  display: grid;
  gap: 0.45rem;
}

.footer-column-socials {
  justify-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  transition: color 0.35s ease;
}

.footer-links-inline a:hover {
  color: var(--lime);
}

.footer-wordmark {
  font-family: var(--font-primary);
  font-size: clamp(4.6rem, 15vw, 14rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  justify-self: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(125, 57, 235, 0.12) 60%, rgba(255, 255, 255, 0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer-bottom span {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  padding-top: 0.25rem;
  font-size: 0.95rem;
}

.service-detail-list {
  display: grid;
  gap: 1.5rem;
}

.service-detail {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.service-detail:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-detail-copy {
  display: grid;
  gap: 0.9rem;
}

.service-detail-visual {
  position: relative;
  min-height: 17rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 57, 235, 0.15), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.service-detail-visual::before,
.service-detail-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-detail-visual::before {
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 2rem rgba(125, 57, 235, 0.04),
    inset 0 0 2rem rgba(125, 57, 235, 0.06);
}

.service-detail-visual::after {
  inset: 24%;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 1px solid rgba(125, 57, 235, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(125, 57, 235, 0.15);
  animation: orbitDrift 19s linear infinite;
}

.detail-ring,
.detail-core {
  position: absolute;
  border-radius: 50%;
}

.detail-ring {
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: orbitDriftReverse 15s linear infinite;
}

.detail-core {
  width: 5.5rem;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 42% 38%, rgba(125, 57, 235, 0.55), rgba(20, 8, 43, 0.96) 62%);
  box-shadow:
    0 0 4rem rgba(125, 57, 235, 0.22),
    inset -1.2rem -1.2rem 2rem rgba(0, 0, 0, 0.42);
}

.service-detail-visual-branding .detail-ring {
  inset: 14%;
}

.service-detail-visual-web::after {
  inset: 20% 12%;
}

.service-detail-visual-photo .detail-core {
  width: 6.2rem;
}

.service-detail-visual-marketing::before {
  inset: 8%;
}

.inline-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.inline-list li {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.editorial-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.editorial-intro > p {
  max-width: 34rem;
}

.filter-tabs button {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  transition: all 0.35s ease;
}

.filter-tabs button.is-active,
.filter-tabs button:hover,
.filter-tabs button:focus-visible {
  border-color: var(--violet);
  background: rgba(125, 57, 235, 0.18);
  color: var(--white);
}

.masonry-grid {
  columns: 1;
  column-gap: 1.2rem;
}

.project-card {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

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

.project-card h2 {
  margin-top: 0.85rem;
  font-size: 2rem;
}

.project-art {
  min-height: 15rem;
  border-radius: calc(var(--radius-medium) - 0.35rem);
}

.project-a { min-height: 22rem; }
.project-b { min-height: 18rem; }
.project-c { min-height: 24rem; }
.project-d { min-height: 19rem; }
.project-e { min-height: 21rem; }
.project-f { min-height: 17rem; }
.project-g { min-height: 22rem; }
.project-h { min-height: 18rem; }
.project-i { min-height: 20rem; }

.project-overlay {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(0.6rem);
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.story-layout,
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.story-stats {
  align-content: start;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border-radius: calc(var(--radius-medium) - 0.35rem);
}

.blog-grid {
  display: grid;
  gap: 1.2rem;
}

.blog-lead {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.blog-lead-art {
  min-height: 20rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-lead-copy {
  display: grid;
  gap: 0.8rem;
  align-content: end;
}

.blog-lead-copy h2 {
  max-width: 12ch;
}

.blog-lead-copy p {
  max-width: 34rem;
}

.article-card {
  display: grid;
  gap: 0.85rem;
}

.article-art {
  min-height: 13rem;
  border-radius: calc(var(--radius-medium) - 0.35rem);
  overflow: hidden;
  background: var(--surface);
}

.article-art img,
.blog-lead-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
  filter: brightness(0.9) saturate(1.05);
}

.article-card:hover .article-art img,
.blog-lead:hover .blog-lead-art img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.art-brand-pull {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 1) 13%, transparent 14%),
    radial-gradient(circle at center, rgba(125, 57, 235, 0.85) 14%, rgba(125, 57, 235, 0.18) 28%, transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--surface);
}

.art-web-mistakes {
  background:
    linear-gradient(90deg, rgba(125, 57, 235, 0.6) 0 20%, transparent 20% 25%, rgba(255, 255, 255, 0.12) 25% 45%, transparent 45% 50%, rgba(198, 255, 51, 0.35) 50% 55%, transparent 55%),
    var(--surface);
}

.art-photo-desire {
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 42% 42%, rgba(125, 57, 235, 0.5), transparent 34%),
    linear-gradient(140deg, rgba(125, 57, 235, 0.28), transparent 45%),
    var(--surface);
}

.art-social-roi {
  background:
    linear-gradient(0deg, rgba(198, 255, 51, 0.4) 0 22%, transparent 22% 100%),
    linear-gradient(90deg, transparent 0 18%, rgba(125, 57, 235, 0.55) 18% 34%, transparent 34% 40%, rgba(255, 255, 255, 0.12) 40% 54%, transparent 54% 60%, rgba(125, 57, 235, 0.8) 60% 76%, transparent 76%),
    var(--surface);
}

.art-egypt-global {
  background:
    radial-gradient(circle at 25% 40%, rgba(198, 255, 51, 0.22), transparent 12%),
    radial-gradient(circle at 50% 55%, rgba(125, 57, 235, 0.55), transparent 20%),
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.12), transparent 12%),
    linear-gradient(135deg, rgba(125, 57, 235, 0.14), transparent 55%),
    var(--surface);
}

.art-dark-mode {
  background:
    radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.14), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    radial-gradient(circle at 48% 52%, rgba(125, 57, 235, 0.7), transparent 22%),
    var(--surface);
}

.article-page .section {
  padding-top: 3rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
}

.article-layout {
  display: grid;
  gap: 2rem;
}

.article-body {
  display: grid;
  gap: 1.2rem;
}

.article-body .lead {
  color: var(--white);
  font-size: 1.15rem;
}

.article-body h2,
.article-body h3 {
  margin-top: 0.75rem;
}

/* ── Featured Image ─────────────────────────────────── */
.article-featured-img {
  margin: 0 0 3rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  position: relative;
}

.article-featured-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}

.article-featured-img img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(1.05);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.6s ease;
}

.article-featured-img:hover img {
  transform: scale(1.025);
  filter: brightness(0.95) saturate(1.1);
}

.share-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.share-actions a,
.share-actions button {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  text-align: center;
}

.share-actions button:hover,
.share-actions a:hover {
  color: var(--lime);
  border-color: rgba(198, 255, 51, 0.5);
}

.author-box {
  margin-top: 3rem;
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 5rem 1fr;
}

.author-box .team-avatar {
  width: 5rem;
  height: 5rem;
  margin: 0;
}

.contact-info {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-notes {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-notes p {
  color: rgba(255, 255, 255, 0.82);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px; /* prevent iOS auto-zoom on focus */
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  outline: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 0.2rem rgba(125, 57, 235, 0.14);
}

.contact-form option {
  color: var(--black);
}

.form-status {
  min-height: 1.5rem;
  color: var(--lime);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(125, 57, 235, 0.85);
  box-shadow: 0 0 1.2rem rgba(125, 57, 235, 0.75);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 60;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.cursor-glow.is-hovering {
  width: 2.1rem;
  height: 2.1rem;
  background: rgba(198, 255, 51, 0.4);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
}

@media (max-width: 63.99rem) {
  body {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links-wrap {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-soft);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
    display: none;
  }

  .nav-links-wrap.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .hero-ring {
    right: -18vw;
    width: 78vw;
  }
}

@media (min-width: 48rem) {
  .hero-meta-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-intro {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .work-feature-wide .work-feature-media {
    min-height: 25rem;
  }

  .work-feature-offset {
    margin-left: auto;
    margin-right: 8%;
  }

  .work-feature-split {
    width: min(100%, 42rem);
  }

  .work-feature-meta h3 {
    max-width: 20ch;
  }

  .story-layout,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
    align-items: start;
  }

  .article-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
  }

  .service-detail {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .footer-column-socials {
    justify-items: end;
    text-align: right;
  }

  .alternating:nth-child(even) > :first-child {
    order: 2;
  }

  .alternating:nth-child(even) > :last-child {
    order: 1;
  }

  .masonry-grid {
    columns: 2;
  }

  .testimonials-section .testimonial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .testimonial-card-lead {
    grid-row: span 2;
  }

  .blog-lead {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
  }

  .cta-panel {
    grid-template-columns: 1.2fr auto;
    align-items: end;
  }
}

@media (min-width: 64rem) {
  .stats-grid {
    grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .work-showcase {
    gap: 4.5rem;
  }

  .work-feature-wide {
    width: min(100%, 50rem);
  }

  .work-feature-offset {
    width: min(100%, 28rem);
    margin-right: 16%;
    margin-top: -2rem;
  }

  .work-feature-split {
    width: min(100%, 38rem);
    margin-left: 8%;
    margin-top: -1rem;
  }

  .work-feature-wide .work-feature-media {
    min-height: 27rem;
  }

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

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

  .masonry-grid {
    columns: 3;
  }
}

@media (max-width: 47.99rem) {
  .cta-panel::after {
    width: 10rem;
    right: -3rem;
    opacity: 0.55;
  }

  .footer-intro p {
    line-height: 1.45;
  }

  .footer-wordmark {
    font-size: clamp(3rem, 18vw, 6rem);
    line-height: 0.9;
  }

  .work-feature-wide::after,
  .work-feature-offset::after {
    display: none;
  }

  .service-card-feature {
    min-height: 21rem;
  }

  .service-detail-visual {
    min-height: 14rem;
  }

  .footer-shell {
    padding-top: 3rem;
  }

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

/* ── Inner Pages Enhanced ── */

/* Smaller h1 on inner hero pages */
.hero-inner h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
}

/* Service detail: bigger editorial number */
.service-number {
  font-family: var(--font-titles);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Service detail: larger visual panels */
.service-detail-visual {
  min-height: 22rem;
}

/* Service detail: tag pills improvement */
.inline-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.3s, color 0.3s;
}
.inline-list li:hover {
  border-color: rgba(198,255,51,0.5);
  color: var(--lime);
}

/* Process steps: editorial redesign */
.process-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  overflow: hidden;
}
.process-step {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  padding: 2rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--surface);
  transition: background 0.35s ease;
  position: relative;
  overflow: hidden;
}
.process-step:last-child {
  border-bottom: none;
}
.process-step::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--lime));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.process-step:hover::after {
  transform: scaleY(1);
}
.process-step::before {
  display: none;
}
.process-step:hover {
  background: rgba(125,57,235,0.06);
  box-shadow: none;
  border-color: var(--border-soft);
}
.process-step span {
  font-family: var(--font-titles);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 4rem;
  transition: color 0.35s ease;
  margin-bottom: 0;
}
.process-step:hover span {
  color: rgba(198,255,51,0.4);
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.process-step:hover h3 {
  color: var(--lime);
}
.process-step p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Values: match benefit-card style */
.values-grid {
  display: grid;
  gap: 1rem;
}
.value-item {
  border-radius: 1.25rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  transform-origin: 50% 100%;
  position: relative;
  overflow: hidden;
}
.value-item::before {
  display: none;
}
.value-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.value-item:hover::after {
  transform: scaleX(1);
}
.value-item:hover {
  transform: rotate(-2deg) translateY(-4px) scale(1.02);
  background: rgba(125,57,235,0.1);
  border-color: rgba(125,57,235,0.45);
  box-shadow: 0 16px 50px rgba(125,57,235,0.2);
}
.value-item span {
  font-family: var(--font-titles);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.1);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.35s ease;
}
.value-item:hover span {
  color: rgba(198,255,51,0.35);
}
.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.value-item:hover h3 {
  color: var(--lime);
}
.value-item p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Team cards: improved */
.team-card {
  border-radius: 1.25rem;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s, box-shadow 0.4s;
}
.team-card::before {
  display: none;
}
.team-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.team-card:hover::after {
  transform: scaleX(1);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125,57,235,0.45);
  box-shadow: 0 20px 50px rgba(125,57,235,0.18);
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 40% 35%, rgba(125,57,235,0.5), transparent 40%),
    radial-gradient(circle at 65% 65%, rgba(198,255,51,0.12), transparent 30%),
    linear-gradient(180deg, rgba(125,57,235,0.12), rgba(0,0,0,0.8));
}
.team-card h3,
.team-card p,
.team-card a {
  padding: 0 1.5rem;
}
.team-card h3 {
  padding-top: 1.25rem;
  font-size: 1.1rem;
}
.team-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.team-card a {
  display: inline-block;
  padding-bottom: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.team-card:hover a {
  color: var(--lime);
}

/* About stats: billboard style on about page */
.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  overflow: hidden;
  align-content: start;
  background: var(--border-soft);
}
.story-stats .stat-item {
  flex: 1 1 40%;
  background: var(--surface);
  border: none;
  border-radius: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.story-stats .stat-item strong {
  font-family: var(--font-titles);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 18px rgba(198,255,51,0.5), 0 0 40px rgba(198,255,51,0.2);
  line-height: 1;
}
.story-stats .stat-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Project art backgrounds */
.project-a {
  background: radial-gradient(circle at 30% 40%, rgba(125,57,235,0.7), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(198,255,51,0.2), transparent 35%),
    linear-gradient(135deg, rgba(125,57,235,0.15), rgba(0,0,0,0.9));
}
.project-b {
  background: linear-gradient(90deg, rgba(125,57,235,0.5) 0 30%, transparent 30%),
    radial-gradient(circle at 70% 50%, rgba(198,255,51,0.25), transparent 40%),
    var(--surface);
}
.project-c {
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.15), transparent 15%),
    radial-gradient(circle at 50% 45%, rgba(125,57,235,0.6), transparent 35%),
    linear-gradient(180deg, rgba(125,57,235,0.1), var(--surface));
}
.project-d {
  background: linear-gradient(0deg, rgba(198,255,51,0.3) 0 20%, transparent 20%),
    linear-gradient(90deg, transparent 20%, rgba(125,57,235,0.6) 20% 50%, transparent 50%),
    var(--surface);
}
.project-e {
  background: radial-gradient(ellipse at 20% 30%, rgba(125,57,235,0.6), transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(198,255,51,0.15), transparent 30%),
    var(--surface);
}
.project-f {
  background: linear-gradient(135deg, rgba(125,57,235,0.4) 0%, rgba(198,255,51,0.15) 50%, transparent 70%),
    var(--surface);
}
.project-g {
  background: radial-gradient(circle at 60% 35%, rgba(198,255,51,0.25), transparent 20%),
    radial-gradient(circle at 40% 60%, rgba(125,57,235,0.55), transparent 30%),
    var(--surface);
}
.project-h {
  background: linear-gradient(45deg, rgba(125,57,235,0.5), transparent 40%),
    linear-gradient(225deg, rgba(198,255,51,0.2), transparent 40%),
    var(--surface);
}
.project-i {
  background: radial-gradient(circle at 50% 50%, rgba(125,57,235,0.4), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.04), var(--surface));
}

/* Blog: improved article cards */
.article-card {
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s, box-shadow 0.4s;
}
.article-card::before {
  display: none;
}
.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125,57,235,0.45);
  box-shadow: 0 20px 50px rgba(125,57,235,0.18);
}
.article-art {
  min-height: 14rem;
  border-radius: 0;
}
.article-card .tag,
.article-card time,
.article-card h2,
.article-card h3,
.article-card p,
.article-card a {
  display: block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.article-card .tag { padding-top: 1.25rem; }
.article-card time { padding-top: 0.4rem; color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.article-card h2,
.article-card h3 { padding-top: 0.5rem; font-size: 1.05rem; line-height: 1.4; }
.article-card p { padding-top: 0.4rem; color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; }
.article-card a { padding-top: 0.75rem; padding-bottom: 1.5rem; color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color 0.3s; }
.article-card:hover a { color: var(--lime); }

/* Blog lead: magazine style */
.blog-lead-art {
  min-height: 26rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--surface);
}
.blog-lead-copy {
  gap: 1.2rem;
}
.blog-lead-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
}
.blog-lead-copy a {
  color: var(--white);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  width: fit-content;
}
.blog-lead-copy a:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(198,255,51,0.05);
}

/* Contact: improved layout */
.contact-info {
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.contact-info h2 {
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.contact-info > a {
  color: var(--white);
  font-size: 1rem;
  transition: color 0.3s;
}
.contact-info > a:hover {
  color: var(--lime);
}
.contact-form-card {
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.contact-form-card:hover {
  box-shadow: 0 0 50px rgba(125,57,235,0.12);
}

/* Article body: better reading */
.article-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  border-left: 2px solid var(--violet);
  padding-left: 1rem;
  margin-top: 1.5rem;
}
.article-body h3 {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}
.article-body p {
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  font-size: 1rem;
}
.article-body .lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  border-left: 3px solid var(--lime);
  padding-left: 1.5rem;
}

/* Responsive: values and process on desktop */
@media (min-width: 48rem) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step {
    align-items: center;
  }
  .story-stats .stat-item {
    flex: 1 1 45%;
  }
}
@media (min-width: 64rem) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .story-stats .stat-item {
    flex: 1;
  }
}

@keyframes ringSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

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

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.035); opacity: 1; }
}

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

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

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(0.75rem); opacity: 0.2; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(125, 57, 235, 0.45); }
  50%       { box-shadow: 0 0 38px rgba(125, 57, 235, 0.8), 0 0 70px rgba(125, 57, 235, 0.3); }
}

/* ── Full-Bleed Projects ── */
.work-fullbleed {
  margin-top: 0;
}

.work-fullbleed-head {
  padding-bottom: 2rem;
}

.fullbleed-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
  perspective: 1200px;
}

.fullbleed-card {
  position: sticky;
  top: 5.5rem;
  width: 100%;
  min-height: 72vh;
  overflow: hidden;
  cursor: none;
  border-radius: 1.25rem;
  will-change: transform;
}

.fullbleed-card:nth-child(1) { z-index: 1; }
.fullbleed-card:nth-child(2) { z-index: 2; }
.fullbleed-card:nth-child(3) { z-index: 3; }
.fullbleed-card:nth-child(4) { z-index: 4; }

/* Custom "View Project" cursor */
.work-cursor {
  position: fixed;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 90;
  top: 0;
  left: 0;
  will-change: left, top;
}

.fullbleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
}

.fullbleed-card:hover .fullbleed-bg {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.18) 0%,
      transparent 35%,
      transparent 50%,
      rgba(0,0,0,0.72) 100%);
  transition: background 0.5s ease;
}

.fullbleed-card:hover .fullbleed-overlay {
  background: linear-gradient(180deg, rgb(0 0 0 / 96%) 0%, #0000009e 30%, transparent 59%, rgb(0 0 0) 100%);
}

.fullbleed-top,
.fullbleed-bottom {
  position: absolute;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  z-index: 2;
}

.fullbleed-top {
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fullbleed-bottom {
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.fullbleed-year {
    color: rgb(255 255 255);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgb(125, 57, 235);
    border: 1px solid rgba(125, 57, 235, 0.4);
}

.fullbleed-title {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.0;
  max-width: 16ch;
  transform: translateY(0.5rem);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullbleed-card:hover .fullbleed-title {
  transform: translateY(0);
}

.fullbleed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-0.8rem);
  transition: opacity 0.4s ease 0.05s,
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
  flex-shrink: 0;
}

.fullbleed-card:hover .fullbleed-link {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 47.99rem) {
  .fullbleed-card {
    min-height: 60vw;
  }

  .fullbleed-top,
  .fullbleed-bottom {
    padding: 1.25rem 1.25rem;
  }

  .fullbleed-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ── Editorial Services Layout ── */
.editorial-services {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: padding 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              opacity 0.4s ease;
}

.editorial-services:hover .editorial-item:not(:hover) {
  opacity: 0.28;
}

.editorial-item:hover {
  padding: 2.6rem 0;
  border-color: rgba(125, 57, 235, 0.4);
}

.editorial-item-body {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  min-width: 0;
}

.editorial-item-num {
  font-family: var(--font-titles);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.9;
  flex-shrink: 0;
  min-width: 3.2rem;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.editorial-item:hover .editorial-item-num {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(198, 255, 51, 0.7);
}

.editorial-item-text {
  display: grid;
  gap: 0;
}

.editorial-item-text h3 {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  transition: color 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-item:hover .editorial-item-text h3 {
  color: var(--white);
  transform: translateX(0.6rem);
}

.editorial-item-text p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  font-size: 1rem;
  max-width: 38rem;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease 0.1s,
              margin-top 0.45s ease;
}

.editorial-item:hover .editorial-item-text p {
  max-height: 5rem;
  opacity: 1;
  margin-top: 0.8rem;
}

.editorial-item-text a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lime);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease 0.14s,
              opacity 0.35s ease 0.2s;
}

.editorial-item:hover .editorial-item-text a {
  max-height: 2.5rem;
  opacity: 1;
}

/* Visual panel */
.editorial-item-vis {
  position: relative;
  width: 11rem;
  height: 11rem;
  border-radius: var(--radius-medium);
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(1.8rem) scale(0.9);
  transition: opacity 0.5s ease 0.06s,
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(125, 57, 235, 0.3);
}

.editorial-item:hover .editorial-item-vis {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.ed-vis-ring {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(125, 57, 235, 0.5);
  animation: orbitDrift 10s linear infinite;
}

.ed-vis-ring::before {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(198, 255, 51, 0.4);
  border-left-color: rgba(125, 57, 235, 0.25);
  animation: orbitDriftReverse 7s linear infinite;
}

.ed-vis-core {
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 40% 40%, rgba(125, 57, 235, 0.9), rgba(12, 4, 28, 0.97) 65%);
  box-shadow: 0 0 2.5rem rgba(125, 57, 235, 0.5);
}

.ed-vis-01 {
  background:
    radial-gradient(circle at 60% 40%, rgba(125, 57, 235, 0.4), transparent 55%),
    radial-gradient(circle at 25% 70%, rgba(198, 255, 51, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(125, 57, 235, 0.14), rgba(0, 0, 0, 0.96));
}

.ed-vis-02 {
  background:
    radial-gradient(circle at 55% 45%, rgba(125, 57, 235, 0.45), transparent 50%),
    radial-gradient(circle at 78% 22%, rgba(198, 255, 51, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.96));
}

.ed-vis-03 {
  background:
    radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.1), transparent 28%),
    radial-gradient(circle at 72% 30%, rgba(125, 57, 235, 0.5), transparent 42%),
    linear-gradient(145deg, rgba(125, 57, 235, 0.2), rgba(0, 0, 0, 0.96));
}

.ed-vis-04 {
  background:
    radial-gradient(circle at 50% 55%, rgba(198, 255, 51, 0.22), transparent 30%),
    radial-gradient(circle at 65% 35%, rgba(125, 57, 235, 0.55), transparent 44%),
    linear-gradient(135deg, rgba(125, 57, 235, 0.16), rgba(0, 0, 0, 0.96));
}

@media (max-width: 47.99rem) {
  .editorial-item-vis {
    width: 6.5rem;
    height: 6.5rem;
  }

  .editorial-item-body {
    gap: 1rem;
  }

  .editorial-item-num {
    min-width: 2.2rem;
  }
}

/* ── Scroll-Triggered Testimonials ── */
.testi-scroll-section {
  position: relative;
}

.testi-sticky-head {
  position: sticky;
  top: 0;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--black) 60%, transparent 100%);
}

.testi-sticky-head h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.0;
  margin-top: 0.75rem;
}

.testi-scroll-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 2rem 6rem;
}

.testi-row {
  display: flex;
}

.testi-row-left  { justify-content: flex-start; }
.testi-row-right { justify-content: flex-end; }
.testi-row-center { justify-content: center; }

.testi-card {
  width: min(28rem, 80vw);
  padding: 1.75rem;
  border-radius: var(--radius-medium);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.testi-card:hover {
  border-color: rgba(125, 57, 235, 0.45);
  box-shadow: 0 0 32px rgba(125, 57, 235, 0.12);
}

.testi-stars {
  display: flex;
  gap: 0.3rem;
}

.testi-stars span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 6px rgba(125, 57, 235, 0.7);
}

.testi-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  flex: 1;
}

.testi-person {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testi-person strong {
  color: var(--white);
  font-size: 0.95rem;
}

.testi-person span {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

/* ── Benefits Section ── */
.benefits-section {
  border-top: 1px solid var(--border-soft);
}

.benefits-head {
  margin-bottom: 4rem;
}

.benefits-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 0.5rem;
  line-height: 1.15;
}

/* 4 columns in one row */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  transform-origin: 50% 100%;
  will-change: transform;
}

.benefit-card:hover {
  transform: rotate(-3deg) translateY(-6px) scale(1.03);
  background: rgba(125,57,235,0.12);
  border-color: rgba(125,57,235,0.5);
  box-shadow: 0 20px 60px rgba(125,57,235,0.25), 0 0 0 1px rgba(198,255,51,0.15);
  z-index: 2;
}

/* violet glow bg */
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(198,255,51,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: inherit;
}

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

/* lime top border glow */
.benefit-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  border-radius: 999px;
}

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

/* SVG icon wrapper */
.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 0.5rem;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.benefit-card:hover .benefit-icon-wrap {
  transform: scale(1.12) rotate(3deg);
}

.benefit-num {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.14em;
  font-family: var(--font-primary);
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-num {
  color: var(--lime);
}

.benefit-card h3 {
  font-family: var(--font-titles);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--lime);
}

.benefit-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Fine-grained overrides handled in the comprehensive mobile section below */

/* ── News Transmissions ── */
.news-transmissions {
  border-top: 1px solid var(--border-soft);
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-head-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.4rem;
}

.news-view-all {
  flex-shrink: 0;
  align-self: flex-end;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  border-top: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.news-item:last-child {
  border-bottom: 1px solid var(--border-soft);
}

/* sweep background on hover */
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(125,57,235,0.08) 0%, rgba(198,255,51,0.04) 60%, transparent 100%);
  transform: translateX(-105%);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.news-item:hover::before {
  transform: translateX(0);
}

/* left accent line */
.news-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--lime));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.news-item:hover::after {
  transform: scaleY(1);
}

.news-item-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.news-item-num {
  font-family: var(--font-titles);
  font-size: 1rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 2rem;
  transition: color 0.3s ease;
}

.news-item:hover .news-item-num {
  color: var(--lime);
}

.news-item-thumb {
  width: 80px;
  height: 64px;
  border-radius: 0.5rem;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.05);
  transition: filter 0.45s ease;
}

.news-item:hover .news-item-thumb {
  transform: scale(1.06);
}

.news-item:hover .news-item-thumb img {
  filter: brightness(1) saturate(1.1);
}

.news-item-body {
  flex: 1;
  min-width: 0;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.news-item-meta time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.news-item-body h3 {
  font-family: var(--font-titles);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item:hover .news-item-body h3 {
  color: var(--lime);
}

.news-item-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.news-item:hover .news-item-arrow {
  color: var(--lime);
  transform: translateX(6px);
}

@media (max-width: 600px) {
  .news-item-thumb { display: none; }
  .news-item-link { gap: 1rem; }
  .news-item-body h3 { white-space: normal; }
}

/* ── Back to Top ── */
.btt-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(125,57,235,0.5);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(125,57,235,0.3), inset 0 0 12px rgba(125,57,235,0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.wa-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(125,57,235,0.5);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(125,57,235,0.3), inset 0 0 12px rgba(125,57,235,0.08);
  backdrop-filter: blur(12px);
  transform: translateY(0) scale(1);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btt-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btt-btn:hover,
.wa-btn:hover {
  color: var(--lime);
  border-color: rgba(198,255,51,0.6);
  box-shadow: 0 0 28px rgba(198,255,51,0.25), 0 0 8px rgba(198,255,51,0.15), inset 0 0 16px rgba(198,255,51,0.05);
  transform: translateY(-3px) scale(1.06);
}

/* spinning dashed orbit ring */
.btt-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: bttOrbit 5s linear infinite;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.btt-btn:hover .btt-ring,
.wa-btn:hover .btt-ring {
  opacity: 1;
  animation-duration: 2s;
}

/* arrow icon */
.btt-arrow {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.btt-btn:hover .btt-arrow {
  transform: translateY(-2px);
}

.wa-icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.wa-btn:hover .wa-icon {
  transform: scale(1.08);
}

/* center glow dot */
.btt-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px rgba(125,57,235,0.9), 0 0 20px rgba(125,57,235,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btt-btn:hover .btt-dot {
  opacity: 1;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(198,255,51,0.9), 0 0 22px rgba(198,255,51,0.4);
}

.wa-btn .btt-dot {
  opacity: 1;
  width: 5px;
  height: 5px;
}

.wa-btn:hover .btt-dot {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(198,255,51,0.9), 0 0 22px rgba(198,255,51,0.4);
}

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

/* ── Grain Overlay ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  z-index: 10000;
  pointer-events: none;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(198,255,51,0.6);
}

/* ── Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-logo {
  width: 120px;
  opacity: 0;
  transform: translateY(12px);
  animation: loaderLogoIn 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  animation: loaderBarFadeIn 0.4s 0.4s ease forwards;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  border-radius: 999px;
  animation: loaderFill 1.1s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}

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

@keyframes loaderBarFadeIn {
  to { opacity: 1; }
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ── Stats Billboard ── */
.stats-billboard {
  padding: 6rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-billboard-head {
  margin-bottom: 4rem;
}

.stats-billboard-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
}

.stats-billboard-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.billboard-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 2.5rem 1rem 0;
}

.billboard-metric:first-child {
  padding-left: 0;
}

.billboard-metric strong {
  font-family: var(--font-titles);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 18px rgba(198,255,51,0.6), 0 0 50px rgba(198,255,51,0.25);
  display: block;
}

.billboard-metric span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.billboard-divider {
  width: 1px;
  background: var(--border-soft);
  margin: 0 2.5rem;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .stats-billboard-row {
    flex-direction: column;
    gap: 2.5rem;
  }
  .billboard-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .billboard-metric {
    padding: 0;
  }
}

/* ══════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ══════════════════════════════════════════════════ */

/* ── Tablet & below (< 768px) ── */
@media (max-width: 47.99rem) {

  /* Section padding reduction */
  .section { padding: 3rem 0; }
  .article-page .section { padding-top: 2rem; }

  /* Hero: tighten up inner pages */
  .hero-inner { padding: 5rem 0 3rem; }
  .hero-ring {
    right: -30vw;
    width: 90vw;
    opacity: 0.5;
  }

  /* Article layout: sidebar stacks below content */
  .article-layout {
    grid-template-columns: 1fr !important;
  }
  .article-sidebar {
    position: static !important;
    order: 3;
  }
  .article-body { order: 1; }

  /* Article featured image: shorter on mobile */
  .article-featured-img img {
    aspect-ratio: 16 / 9;
  }

  /* Blog lead: single column */
  .blog-lead {
    grid-template-columns: 1fr !important;
  }
  .blog-lead-art {
    min-height: 18rem !important;
  }

  /* Testimonials sticky head: shrink from 70vh */
  .testi-sticky-head {
    height: 45vh;
  }
  .testi-sticky-head h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Testi scroll: tighter padding */
  .testi-scroll-wrap {
    gap: 1.5rem;
    padding: 0 0.5rem 4rem;
  }
  .testi-card {
    width: min(100%, 80vw);
    padding: 1.25rem;
  }

  /* Benefits grid: 2 columns at 768px */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }

  /* News section head: stack */
  .news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  /* Related grid: 2 cols on tablet */
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem;
  }

  /* Reduce grid gaps */
  .service-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .blog-grid {
    gap: 0.75rem;
  }

  /* Author box: stack */
  .author-box {
    grid-template-columns: 1fr;
  }
  .author-box .team-avatar {
    width: 3.5rem;
    height: 3.5rem;
  }

  /* CTA panel: stack */
  .cta-panel {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Footer top: single column */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer-column-socials {
    justify-items: start !important;
    text-align: left !important;
  }

  /* Stats billboard: already handled at 700px — pad sections */
  .stats-billboard { padding: 3.5rem 0; }
}

/* ── Small phones (< 480px) ── */
@media (max-width: 30rem) {

  /* Hero ring: much smaller / hide overflow */
  .hero-ring {
    right: -40vw;
    width: 100vw;
    opacity: 0.35;
  }

  /* Benefits: single column on small phones */
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }

  /* Related grid: single column */
  .related-grid {
    grid-template-columns: 1fr !important;
  }

  /* Article featured img: square-ish */
  .article-featured-img img {
    aspect-ratio: 4 / 3;
  }

  /* Back to top: smaller + closer to edge */
  .btt-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }

  .wa-btn {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 44px;
    height: 44px;
  }

  /* News list: reduce link padding */
  .news-item-link {
    padding: 1.25rem 0;
    gap: 0.75rem;
  }

  /* Testi sticky: even shorter */
  .testi-sticky-head {
    height: 35vh;
  }

  /* Section frame: tighter on very small screens */
  .section,
  .section-frame {
    width: calc(100% - 1.5rem);
  }

  /* Stats billboard numbers: scale down */
  .billboard-metric strong {
    font-size: clamp(3rem, 16vw, 5rem);
  }
}

/* ── Marquee: mobile speed & safety ── */
@media (max-width: 47.99rem) {
  .marquee-track {
    animation-duration: 18s; /* slower on mobile */
  }
  /* Pause on reduced-motion preference */
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-play-state: paused; }
  @keyframes bttOrbit { from { transform: rotate(0deg); } to { transform: rotate(0deg); } }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--surface-strong);
}

::-webkit-scrollbar-thumb {
  background: var(--violet);
  border-radius: 999px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lime);
}
