/* ═══════════════════════════════════════════
   NOVA Studio — styles.css
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:       #080b14;
  --bg-2:     #0e1220;
  --bg-3:     #151b2e;
  --white:    #ffffff;
  --off-white:#c8cce0;
  --muted:    rgba(200, 204, 224, 0.5);
  --purple:   #7c3aed;
  --purple-l: #a78bfa;
  --pink:     #ec4899;
  --pink-l:   #f472b6;

  --gradient:        linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(124,58,237,.12), rgba(236,72,153,.12));

  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono: 'Courier New', Courier, monospace;

  --max-w: 1280px;
  --r:     8px;
  --ease:  0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button, body.cursor-on [role="button"] { cursor: none; }

#c-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 7px; height: 7px;
  background: var(--purple-l);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  display: none;
}
#c-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(124,58,237,.55);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .4s ease, height .4s ease, border-color .3s ease;
  display: none;
}
body.cursor-on #c-dot,
body.cursor-on #c-ring { display: block; }

/* ── KEYFRAMES ── */
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); border-radius: 50%; }
  33%      { transform: translate(28px,-18px) scale(1.04); border-radius: 60% 40% 70% 30%/50% 60% 40% 50%; }
  66%      { transform: translate(-18px,14px) scale(.97); border-radius: 40% 60% 30% 70%/60% 40% 60% 40%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 20px rgba(124,58,237,.3); }
  50%     { box-shadow: 0 0 40px rgba(124,58,237,.6), 0 0 60px rgba(236,72,153,.25); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ── UTILITIES ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--alt { background: var(--bg-2); }

.tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-l);
  display: block;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-l) 0%, var(--pink-l) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease var(--delay,0s), transform .7s ease var(--delay,0s);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease var(--delay,0s), transform .7s ease var(--delay,0s);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease var(--delay,0s), transform .7s ease var(--delay,0s);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  animation: pulseGlow 3s ease infinite;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); animation: none; box-shadow: 0 10px 32px rgba(124,58,237,.5); }
.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover { border-color: var(--purple-l); color: var(--white); transform: translateY(-2px); }

/* Gradient border wrapper */
.gradient-border { display: inline-block; padding: 1.5px; border-radius: 100px; background: var(--gradient); }
.gradient-border .btn { background: var(--bg); color: var(--white); }
.gradient-border .btn:hover { background: var(--gradient); transform: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.5rem 0;
  transition: background .4s ease, padding .3s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,11,20,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1rem 0;
  border-color: rgba(255,255,255,.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--white); }
.nav__logo span { color: var(--purple-l); }

.nav__links { display: flex; gap: 2.5rem; align-items: center; }
.nav__links a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  position: relative;
  transition: color var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: .75rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--off-white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 900px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8,11,20,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__links.open { max-height: 400px; }
  .nav__links a { display: block; padding: 1rem 2rem; border-bottom: 1px solid rgba(255,255,255,.04); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 5rem;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.35) 0%, transparent 70%);
  top: -25%; left: -12%;
  animation: orbFloat 11s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,.25) 0%, transparent 70%);
  bottom: -15%; right: -8%;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  top: 55%; left: 45%;
  animation: orbFloat 9s ease-in-out infinite 2s;
}
.hero__content { position: relative; z-index: 1; max-width: 860px; }
.hero__title {
  font-size: clamp(1.85rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.75rem;
  line-height: 1.85;
  min-height: 3.5em;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted);
  font-family: var(--mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--purple-l), transparent);
  animation: floatY 2s ease infinite;
}

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.2rem 0;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.marquee__sep { color: var(--purple-l); font-size: .6rem; }

/* ── SECTION HEADER ── */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.section-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 500px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* ── CARD FILLS (project backgrounds) ── */
.fill-1 { background: linear-gradient(135deg,#150a3d 0%,#3d1a6b 50%,#7c3aed 100%); }
.fill-2 { background: linear-gradient(135deg,#0d1a3d 0%,#1a3a6b 50%,#3b82f6 100%); }
.fill-3 { background: linear-gradient(135deg,#2d0a20 0%,#6b1a4d 50%,#ec4899 100%); }
.fill-4 { background: linear-gradient(135deg,#0a2d1a 0%,#1a6b4d 50%,#10b981 100%); }
.fill-5 { background: linear-gradient(135deg,#2d1a0a 0%,#7a3b10 50%,#f97316 100%); }
.fill-6 { background: linear-gradient(135deg,#0a1a2d 0%,#1a4d6b 50%,#06b6d4 100%); }
.fill-7 { background: linear-gradient(135deg,#1a0a2d 0%,#4d1a6b 50%,#a855f7 100%); }
.fill-8 { background: linear-gradient(135deg,#2d0a0a 0%,#6b1a1a 50%,#ef4444 100%); }
.fill-9 { background: linear-gradient(135deg,#1a2d0a 0%,#4d6b1a 50%,#84cc16 100%); }

/* ── WORK PREVIEW (home) ── */
.work-preview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .work-preview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .work-preview-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card__bg { position: absolute; inset: 0; transition: transform .55s ease; }
.project-card:hover .project-card__bg { transform: scale(1.06); }

.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,20,.95) 0%, rgba(8,11,20,.2) 55%, transparent 100%);
  padding: 1.75rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  transform: translateY(6px);
  transition: transform .4s ease;
}
.project-card:hover .project-card__overlay { transform: translateY(0); }
.project-card__cat { font-family: var(--mono); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple-l); margin-bottom: .35rem; }
.project-card__title { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.project-card__arrow {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.project-card:hover .project-card__arrow { opacity: 1; transform: translateY(0); }

/* ── SERVICES TEASER (home) ── */
.service-row {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  transition: padding-left .3s ease;
  cursor: default;
}
.service-row::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 1px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-row:hover { padding-left: .5rem; }
.service-row:hover::after { transform: scaleX(1); }
.service-row__num { font-family: var(--mono); font-size: .68rem; color: var(--purple-l); min-width: 2.25rem; }
.service-row__name { font-size: clamp(1.1rem,2.5vw,1.5rem); font-weight: 700; color: var(--white); flex: 1; letter-spacing: -.01em; }
.service-row__desc { color: var(--muted); font-size: .85rem; max-width: 280px; display: none; }
@media (min-width: 900px) { .service-row__desc { display: block; } }
.service-row__icon { color: var(--muted); transition: transform .3s ease, color .3s ease; }
.service-row:hover .service-row__icon { transform: translateX(5px); color: var(--purple-l); }

/* ── TESTIMONIAL ── */
.testimonial-wrap {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.testimonial-quote-mark {
  font-size: 9rem; line-height: .7;
  font-family: Georgia, serif;
  background: var(--gradient); background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 4s ease infinite;
  display: block; margin-bottom: 1rem;
}
.testimonial-text {
  font-size: clamp(1.2rem,2.5vw,1.8rem);
  font-weight: 500; color: var(--white);
  line-height: 1.55; letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: .85rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: .9rem; }
.testimonial-role { color: var(--muted); font-size: .78rem; margin-top: .1rem; }

/* ── CTA SECTION ── */
.cta-inner {
  text-align: center; position: relative; z-index: 1;
}
.cta-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.cta-title {
  font-size: clamp(2rem,5vw,4.5rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.04em; line-height: 1.08;
  margin-bottom: 1.25rem;
}
.cta-body { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 11rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero__orb {
  position: absolute; top: -30%; right: -8%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.page-hero__title {
  font-size: clamp(1.8rem,6vw,5.5rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.04em; line-height: 1.04;
  margin-bottom: 1.25rem;
}
.page-hero__body { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.85; }

/* Split hero (about) */
.page-hero--split .hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
}
@media (max-width: 768px) { .page-hero--split .hero-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ── ABOUT: STATS ── */
.stats-strip { background: var(--bg-2); padding: 0; }
.stats-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stat-cell {
  padding: 3rem 2.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-cell:last-child { border-right: none; }
.stat-cell__num {
  font-size: 3.75rem; font-weight: 800;
  letter-spacing: -.05em; line-height: 1;
  margin-bottom: .5rem;
}
.stat-cell__label { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-family: var(--mono); }
@media (max-width: 560px) { .stats-strip__grid { grid-template-columns: 1fr; } .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); } .stat-cell:last-child { border-bottom: none; } }

/* ── ABOUT: TIMELINE ── */
.timeline { position: relative; padding-left: 3.5rem; }
.timeline::before {
  content: '';
  position: absolute; left: .6rem; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--pink));
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.3s ease;
}
.timeline.line-on::before { transform: scaleY(1); }
.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute; left: -2.9rem; top: 5px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--purple-l);
  box-shadow: 0 0 0 3px rgba(167,139,250,.2);
}
.tl-year { font-family: var(--mono); font-size: .68rem; color: var(--purple-l); letter-spacing: .1em; margin-bottom: .4rem; }
.tl-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.tl-body { color: var(--muted); font-size: .93rem; line-height: 1.75; max-width: 540px; }

/* ── ABOUT: VALUES ── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg-2); border-radius: 12px; padding: 2rem;
  border: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  transition: border-color .3s ease;
}
.value-card:hover { border-color: rgba(124,58,237,.45); }
.value-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-subtle);
  opacity: 0; transition: opacity .3s ease;
}
.value-card:hover::before { opacity: 1; }
.value-card__icon { width: 44px; height: 44px; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.value-card__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; position: relative; z-index: 1; }
.value-card__body { color: var(--muted); font-size: .88rem; line-height: 1.75; position: relative; z-index: 1; }

/* ── ABOUT: TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { border-radius: 12px; overflow: hidden; position: relative; }
.team-card__photo { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.team-card__photo-bg { position: absolute; inset: 0; transition: transform .5s ease; }
.team-card:hover .team-card__photo-bg { transform: scale(1.05); }
.team-card__photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,20,1) 0%, rgba(8,11,20,.35) 55%, transparent 100%); }
.team-card__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--white); }
.team-card__role { font-size: .75rem; color: var(--purple-l); font-family: var(--mono); margin-top: .2rem; letter-spacing: .06em; }

/* ── WORK PAGE ── */
.filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-pill {
  padding: .5rem 1.3rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; border: 1px solid rgba(255,255,255,.12);
  color: var(--muted); background: transparent;
  transition: all var(--ease);
}
.filter-pill:hover { border-color: var(--purple-l); color: var(--white); }
.filter-pill.active { background: var(--gradient); border-color: transparent; color: var(--white); }

.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .work-grid { grid-template-columns: 1fr; } }

.work-item { transition: opacity .4s ease, transform .4s ease; }
.work-item.filtered-out { opacity: 0; transform: scale(.96); pointer-events: none; }
.work-item.hidden { display: none; }

.work-card { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
.work-card--tall { aspect-ratio: 3/4; }
.work-card__bg { position: absolute; inset: 0; transition: transform .55s ease; }
.work-card:hover .work-card__bg { transform: scale(1.06); }
.work-card__info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,20,.95) 0%, transparent 55%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity .3s ease;
}
.work-card:hover .work-card__info { opacity: 1; }
.work-card__cat { font-family: var(--mono); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple-l); margin-bottom: .3rem; }
.work-card__title { font-size: .95rem; font-weight: 700; color: var(--white); }
.load-more-row { text-align: center; margin-top: 3rem; }

/* ── SERVICES ACCORDION ── */
.accordion-list { margin-top: 3rem; }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.accordion-trigger {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.75rem 0; cursor: pointer;
  width: 100%; background: none; border: none;
  color: var(--white); text-align: left;
  transition: padding-left .2s ease;
}
.accordion-trigger:hover { padding-left: .3rem; }
.accordion-trigger__num { font-family: var(--mono); font-size: .68rem; color: var(--purple-l); min-width: 2.25rem; }
.accordion-trigger__title { font-size: clamp(1rem,2.2vw,1.4rem); font-weight: 700; flex: 1; }
.accordion-trigger__icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted); flex-shrink: 0;
  transition: transform .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}
.accordion-item.open .accordion-trigger__icon { transform: rotate(45deg); border-color: var(--purple); background: rgba(124,58,237,.15); color: var(--purple-l); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.accordion-body__inner { padding: 0 0 2rem 3.75rem; color: var(--muted); line-height: 1.85; font-size: .93rem; max-width: 680px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg-2); border-radius: 14px; padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.4); }
.pricing-card--featured {
  border-color: rgba(124,58,237,.45);
  background: linear-gradient(160deg, rgba(124,58,237,.08), rgba(236,72,153,.06));
}
.pricing-card--featured .pricing-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gradient); color: var(--white);
  padding: .3rem .75rem; border-radius: 100px;
}
.pricing-tier { font-family: var(--mono); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple-l); margin-bottom: 1rem; }
.pricing-price {
  font-size: 3.25rem; font-weight: 800; color: var(--white);
  letter-spacing: -.05em; line-height: 1; margin-bottom: .4rem;
}
.pricing-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-price-note { color: var(--muted); font-size: .83rem; margin-bottom: 2rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem 0;
  color: var(--muted); font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: white; font-weight: 700; flex-shrink: 0;
}

/* ── PROCESS STEPS ── */
.process-steps { }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem;
  padding-bottom: 4rem; position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::after {
  content: '';
  position: absolute; left: 39px; top: 80px; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.06);
}
.process-step:last-child::after { display: none; }
.process-step__circle {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--muted);
  font-family: var(--mono); flex-shrink: 0;
  position: relative; z-index: 1; background: var(--bg);
  transition: border-color .5s ease, color .5s ease, box-shadow .5s ease;
}
.process-step.reveal.visible .process-step__circle {
  border-color: var(--purple);
  color: var(--purple-l);
  box-shadow: 0 0 24px rgba(124,58,237,.25);
}
.process-step__body { padding-top: 1.35rem; }
.process-step__phase { font-family: var(--mono); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--purple-l); margin-bottom: .5rem; }
.process-step__title { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.process-step__desc { color: var(--muted); line-height: 1.85; font-size: .93rem; max-width: 580px; }
@media (max-width: 480px) {
  .process-step { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .process-step__circle { width: 60px; height: 60px; font-size: 1rem; }
  .process-step::after { left: 29px; top: 62px; }
}

/* ── TOOLS GRID ── */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(110px,1fr)); gap: 1rem; margin-top: 2.5rem; }
.tool-badge {
  background: var(--bg-2); border: 1px solid rgba(255,255,255,.06); border-radius: 8px;
  padding: 1rem .75rem; text-align: center;
  font-family: var(--mono); font-size: .7rem; color: var(--muted); letter-spacing: .05em;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.tool-badge:hover { border-color: rgba(124,58,237,.4); color: var(--white); background: rgba(124,58,237,.05); }

/* ── FAQ ── */
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer;
  background: none; border: none; color: var(--white); text-align: left; width: 100%;
  font-size: 1rem; font-weight: 600; font-family: var(--font);
  transition: color .2s ease;
}
.faq-trigger:hover { color: var(--purple-l); }
.faq-icon { font-size: 1.15rem; color: var(--purple-l); flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-body__inner { padding: 0 0 1.5rem; color: var(--muted); line-height: 1.85; font-size: .93rem; max-width: 660px; }

/* ── CONTACT FORM (floating labels) ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.field-group { position: relative; margin-bottom: 1.5rem; }
.field-input {
  width: 100%; padding: 1.4rem 1rem .5rem;
  background: var(--bg-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); color: var(--white);
  font-family: var(--font); font-size: 1rem; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field-input::placeholder { color: transparent; }
.field-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,.15); }
textarea.field-input { min-height: 145px; resize: vertical; padding-top: 1.75rem; }

.field-label {
  position: absolute; top: 1.1rem; left: 1rem;
  color: var(--muted); font-size: .95rem; pointer-events: none;
  transition: top .2s ease, font-size .2s ease, color .2s ease, letter-spacing .2s ease;
}
.field-input:focus ~ .field-label,
.field-input:not(:placeholder-shown) ~ .field-label {
  top: .32rem; font-size: .68rem; color: var(--purple-l); letter-spacing: .06em;
}
.field-group.has-error .field-input { border-color: #f87171; }
.field-group .error-msg { display: none; color: #f87171; font-size: .78rem; margin-top: .3rem; }
.field-group.has-error .error-msg { display: block; }

.form-success {
  display: none; text-align: center; padding: 3.5rem 1rem;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(236,72,153,.2));
  border: 1px solid rgba(124,58,237,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1.5rem;
}
.form-success__title { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.form-success__body { color: var(--muted); }

.contact-info-panel { position: relative; }
.info-orb {
  position: absolute; top: -15%; right: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-detail__icon {
  width: 42px; height: 42px; border-radius: 9px;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--purple-l);
}
.contact-detail__label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-family: var(--mono); margin-bottom: .25rem; }
.contact-detail__value { color: var(--white); font-size: .95rem; line-height: 1.5; }
.social-row { display: flex; gap: .75rem; margin-top: 2.5rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--bg-2); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.social-btn:hover { border-color: var(--purple); color: var(--purple-l); background: rgba(124,58,237,.1); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-2); border-top: 1px solid rgba(255,255,255,.06);
  padding: 3.5rem 0 2rem; margin-top: auto;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 2rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-logo { font-size: 1.45rem; font-weight: 800; letter-spacing: -.03em; color: var(--white); margin-bottom: .75rem; }
.footer__brand-logo span { color: var(--purple-l); }
.footer__brand-desc { color: var(--muted); font-size: .85rem; line-height: 1.7; max-width: 200px; }
.footer__col-label { font-family: var(--mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; display: block; }
.footer__col-links { display: flex; flex-direction: column; gap: .7rem; }
.footer__col-links a { color: rgba(200,204,224,.55); font-size: .88rem; transition: color var(--ease); }
.footer__col-links a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__copy { color: rgba(200,204,224,.28); font-size: .78rem; }
.footer__meta { display: flex; gap: 1.5rem; }
.footer__meta a { color: rgba(200,204,224,.28); font-size: .78rem; transition: color var(--ease); }
.footer__meta a:hover { color: var(--off-white); }

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 8.5rem 0 3.5rem; }
  .hero { padding-top: 90px; padding-bottom: 2.5rem; }
  .hero__scroll { display: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .testimonial-quote-mark { font-size: 5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured .pricing-badge { top: .75rem; right: .75rem; }
}



/* -- TABLET (<=768px) -- */
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .hero { padding-top: 90px; padding-bottom: 3rem; }
  .cta-title { font-size: clamp(1.75rem, 5vw, 3rem); }
  .accordion-body__inner { padding-left: 2rem; }
}

/* -- MOBILE extras (<=480px) -- */
@media (max-width: 480px) {
  .marquee__track { animation-duration: 14s; }
  .accordion-body__inner { padding-left: 1rem; }
  .hero__sub { font-size: .975rem; }
  .stat-cell__num { font-size: 3rem; }
  .process-step__body { padding-top: 1rem; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .field-input { font-size: 1rem; }
}
