/* ================================================================
   STYLES — Cinematic Noir Landing Page
   RALIES Web — Premium Web Design & Development
   ================================================================ */

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Typography Classes ───────────────────────────────────────── */
.label-caps {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.body-md  { font-size: 16px; font-weight: 400; line-height: 1.65; color: var(--text-secondary); }
.body-lg  { font-size: 20px; font-weight: 400; line-height: 1.6;  color: var(--text-secondary); }

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--outer);
}

main { position: relative; z-index: 1; }

/* ── Film Grain ───────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.038;
  mix-blend-mode: overlay;
  animation: grain 0.4s steps(1) infinite;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}

/* ── Custom Cursor ────────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [tabindex] { cursor: none; }

  .cursor {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(248, 220, 216, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: calc(var(--z-grain) - 1);
    transform: translate(-50%, -50%);
    transition: width var(--dur-mid) var(--ease-spring),
                height var(--dur-mid) var(--ease-spring),
                border-color var(--dur-mid) var(--ease-out);
    will-change: left, top;
  }

  .cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: calc(var(--z-grain) - 1);
    transform: translate(-50%, -50%);
    will-change: left, top;
  }

  .cursor.is-hovering {
    width: 56px;
    height: 56px;
    border-color: var(--primary);
    border-width: 1.5px;
  }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  transition: background var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--btn-shadow);
}
.btn--primary:hover { background: #a42d22; box-shadow: var(--glow-red-hover); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--outline-dim);
}
.btn--ghost:hover { border-color: var(--outline); background: rgba(248, 220, 216, 0.04); }

.btn--outline {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid var(--border-low);
}
.btn--outline:hover { background: rgba(141, 36, 26, 0.08); border-color: rgba(141, 36, 26, 0.5); }

.btn--lg  { padding: 17px 38px; font-size: 16px; }
.btn--xl  { padding: 20px 52px; font-size: 18px; }

.btn__arrow {
  display: inline-block;
  transition: transform var(--dur-mid) var(--ease-spring);
  font-style: normal;
}
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── Section Header ───────────────────────────────────────────── */
.section-header { margin-bottom: var(--sp-8); }

.section-header__tag {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.section-header__tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 580px;
}

/* ── Reveal Animations ────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-slower) var(--ease-out),
              transform var(--dur-slower) var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: background var(--dur-slow) var(--ease-out),
              backdrop-filter var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(24, 11, 9, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border-surface);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--outer);
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
}

/* ── Logo image ────────────────────────────────────────────────── */
.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.nav__logo:hover .nav__logo-img { opacity: 0.85; }
.nav__rec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav__rec-dot {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-rec 2.2s ease-in-out infinite;
}
@keyframes pulse-rec {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0   rgba(141,36,26,0.7); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 5px rgba(141,36,26,0); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--dur-mid) var(--ease-spring);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__cta { margin-left: var(--sp-1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 26px;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--dur-mid) var(--ease-out);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Warm glow behind hero headline */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 70% 40%,
    rgba(141, 36, 26, 0.10) 0%,
    rgba(141, 36, 26, 0.04) 40%,
    transparent 68%
  );
  pointer-events: none;
}

/* Bottom vignette */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-6) var(--outer) var(--sp-8);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ── Hero content ──── */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-4);
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero__label-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-rec 2.2s ease-in-out infinite;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.hero__line {
  display: block;
  animation: lineReveal 0.85s var(--ease-out) both;
}
.hero__line:nth-child(1) { animation-delay: 0.30s; }
.hero__line:nth-child(2) { animation-delay: 0.44s; }
.hero__line:nth-child(3) { animation-delay: 0.58s; }
.hero__line:nth-child(4) { animation-delay: 0.72s; }

.hero__line--accent {
  background: linear-gradient(105deg, var(--primary-light) 0%, #ff7a6b 45%, var(--primary-light) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lineReveal 0.85s var(--ease-out) 0.44s both, shimmer 5s linear 1.8s infinite;
}

@keyframes lineReveal {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
.hero__attention {
  display: inline-block;
  transform-origin: left center;
  animation: attention-pulse 5s ease-in-out 1.8s infinite;
}
@keyframes attention-pulse {
  0%, 100% { color: var(--text);           transform: scale(1); }
  30%       { color: var(--primary-light);  transform: scale(1.028); }
  60%       { color: var(--text-secondary); transform: scale(1.014); }
  80%       { color: var(--outline);        transform: scale(1.006); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__attention { animation: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 520px;
  animation: fadeUp 0.7s var(--ease-out) 0.90s both;
  margin-bottom: var(--sp-6);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 1.05s both;
}

/* ── Hero Viewfinder ──── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s var(--ease-out) 0.65s both;
}

.hero__frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3/2;
}

.hero__frame-inner {
  width: 100%;
  height: 100%;
  background: var(--surface-elevated);
  border: 1px solid var(--outline-dim);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

/* Viewfinder grid */
.hero__frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248,220,216,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,220,216,0.035) 1px, transparent 1px);
  background-size: 20% 20%;
}

/* Center reticle */
.hero__frame-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(141,36,26,0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(141,36,26,0.15);
  animation: reticle-pulse 3s ease-in-out infinite;
}
@keyframes reticle-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(141,36,26,0.15), 0 0 0 0 rgba(141,36,26,0.3); }
  50%       { box-shadow: 0 0 0 1px rgba(141,36,26,0.25), 0 0 0 12px rgba(141,36,26,0); }
}

/* Corner brackets */
.corners { position: absolute; inset: 18px; pointer-events: none; }
.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(255,180,169,0.5);
  border-style: solid;
}
.corner--tl { top: 0; left: 0;  border-width: 2px 0 0 2px; }
.corner--tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.corner--bl { bottom: 0; left: 0;  border-width: 0 0 2px 2px; }
.corner--br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* Reel progress bar */
.hero__reel { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(248,220,216,0.07); }
.hero__reel-track {
  height: 100%;
  width: 55%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 0 2px 2px 0;
  animation: reel 3.5s ease-in-out infinite alternate;
}
@keyframes reel {
  from { width: 28%; }
  to   { width: 88%; }
}

/* Metadata labels inside frame */
.hero__frame-meta {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.hero__fps { color: var(--primary-light); }

/* Hero frame photo */
.hero__frame-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
  filter: saturate(0.25) brightness(0.6);
  z-index: 0;
}
/* Ensure frame UI elements sit above the photo */
.hero__frame-inner::before { z-index: 1; }
.hero__frame-inner::after  { z-index: 3; }
.corners         { z-index: 4; }
.hero__reel      { z-index: 4; }
.hero__frame-meta { z-index: 4; }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: fadeUp 0.7s var(--ease-out) 1.6s both;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--outline-dim), transparent);
  animation: scroll-line 1.6s ease-in-out infinite;
}
@keyframes scroll-line {
  from  { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%   { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%   { transform: scaleY(1); transform-origin: bottom; }
  100%  { transform: scaleY(0); transform-origin: bottom; opacity: 0.4; }
}

/* ================================================================
   STATS
   ================================================================ */
.stats {
  padding: var(--sp-12) 0;
  position: relative;
}
.stats::before, .stats::after {
  content: '';
  position: absolute;
  left: var(--outer);
  right: var(--outer);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-low), transparent);
}
.stats::before { top: 0; }
.stats::after  { bottom: 0; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: var(--sp-6) var(--sp-8);
  border-right: 1px solid var(--border-surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat:last-child { border-right: none; }

.stat__number {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.stat__prefix {
  font-size: 0.42em;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 0.22em;
}
.stat__suffix {
  font-size: 0.46em;
  color: var(--primary-light);
  align-self: flex-start;
  margin-top: 0.12em;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services { padding: var(--section-lg) 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--outline-dim);
  border: 1px solid var(--outline-dim);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.service-card {
  background: var(--surface-elevated);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: background var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-spring);
}
.service-card:hover { background: var(--surface-low); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__number { color: var(--primary); opacity: 0.75; }

.service-card__icon {
  font-size: 26px;
  line-height: 1;
  color: var(--text-secondary);
  margin-top: var(--sp-2);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.2;
}

.service-card__desc { flex: 1; max-width: 380px; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  margin-top: var(--sp-2);
  transition: gap var(--dur-mid) var(--ease-spring);
}
.service-card__link:hover { gap: 14px; }

/* ================================================================
   WORK
   ================================================================ */
.work { padding: var(--section-lg) 0; }
.work > .container { margin-bottom: var(--sp-4); }

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 var(--outer);
  max-width: var(--container);
  margin: 0 auto;
}

.work-card {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.work-card:nth-child(1) { border-radius: var(--r-lg) 0 0 0; }
.work-card:nth-child(3) { border-radius: 0 var(--r-lg) 0 0; }
.work-card:nth-child(4) { border-radius: 0 0 0 var(--r-lg); }
.work-card:nth-child(6) { border-radius: 0 0 var(--r-lg) 0; }

.work-card__media {
  position: absolute;
  inset: 0;
  transition: transform var(--dur-slower) var(--ease-out);
}
.work-card:hover .work-card__media,
.work-card:focus-visible .work-card__media { transform: scale(1.06); }

/* Work cards — real photos with cinematic noir overlays */
.work-card__media {
  position: absolute;
  inset: 0;
  transition: transform var(--dur-slower) var(--ease-out);
  background-size: cover;
  background-position: center;
  filter: saturate(0.55) brightness(0.88);
  transition: transform var(--dur-slower) var(--ease-out),
              filter var(--dur-slow) var(--ease-out);
}
.work-card:hover .work-card__media,
.work-card:focus-visible .work-card__media {
  transform: scale(1.06);
  filter: saturate(0.75) brightness(0.95);
}

.work-card__media--1 {
  background-image: url('../assets/template-meridian.png');
  background-position: top center;
}
.work-card__media--1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(10,20,40,0.18) 0%, transparent 55%),
    linear-gradient(145deg, rgba(8,16,28,0.52) 0%, rgba(20,36,58,0.22) 45%, rgba(8,14,24,0.42) 100%);
}

.work-card__media--2 {
  background-image: url('../assets/template-dreelio.png');
  background-position: top center;
}
.work-card__media--2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(200,215,240,0.12) 0%, transparent 55%),
    linear-gradient(155deg, rgba(10,12,18,0.60) 0%, rgba(22,26,40,0.30) 45%, rgba(8,10,16,0.50) 100%);
}

.work-card__media--3 {
  background-image: url('../assets/template-renewgi.png');
  background-position: top center;
}
.work-card__media--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(30,90,40,0.30) 0%, transparent 55%),
    linear-gradient(135deg, rgba(6,14,8,0.55) 0%, rgba(16,36,18,0.25) 45%, rgba(8,18,10,0.42) 100%);
}

.work-card__media--4 {
  background-image: url('../assets/template-haproit.png');
  background-position: top center;
}
.work-card__media--4::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 35%, rgba(100,40,200,0.28) 0%, transparent 55%),
    linear-gradient(165deg, rgba(10,4,20,0.58) 0%, rgba(26,10,50,0.28) 50%, rgba(8,4,16,0.48) 100%);
}

.work-card__media--5 {
  background-image: url('../assets/template-superior.png');
  background-position: top center;
}
.work-card__media--5::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(180,200,180,0.10) 0%, transparent 55%),
    linear-gradient(130deg, rgba(8,10,8,0.55) 0%, rgba(18,22,18,0.25) 45%, rgba(6,8,6,0.42) 100%);
}

.work-card__media--6 {
  background-image: url('../assets/template-marais.png');
  background-position: top center;
}
.work-card__media--6::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(200,160,0,0.20) 0%, transparent 55%),
    linear-gradient(140deg, rgba(14,10,4,0.55) 0%, rgba(30,22,6,0.25) 45%, rgba(10,8,4,0.42) 100%);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,11,9,0.97) 0%, rgba(24,11,9,0.0) 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.work-card:hover .work-card__overlay,
.work-card:focus-visible .work-card__overlay { opacity: 1; }

.work-card__info {
  transform: translateY(14px);
  transition: transform var(--dur-mid) var(--ease-out);
}
.work-card:hover .work-card__info,
.work-card:focus-visible .work-card__info { transform: translateY(0); }

.work-card__category { margin-bottom: 4px; color: var(--primary-light); }

.work-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.work-card__arrow {
  font-size: 22px;
  color: var(--text);
  transform: translateY(14px);
  transition: transform var(--dur-mid) var(--ease-out);
  opacity: 0.55;
  align-self: flex-end;
}
.work-card:hover .work-card__arrow,
.work-card:focus-visible .work-card__arrow { transform: translateY(0); }

.work__footer { text-align: center; margin-top: var(--sp-8); }

/* ================================================================
   PROCESS
   ================================================================ */
.process { padding: var(--section-lg) 0; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}

.process-step { padding-top: var(--sp-2); }

.process-step__header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.process-step__num {
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--primary-light);
}
.process-step__line {
  flex: 1;
  height: 1px;
  background: var(--border-low);
}
.process-step:last-child .process-step__line { background: transparent; }

.process-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--sp-2);
  line-height: 1.25;
}
.process-step__desc { font-size: 14px; line-height: 1.65; color: var(--text-secondary); }

/* ================================================================
   TESTIMONIAL
   ================================================================ */
.testimonial {
  padding: var(--section-lg) 0;
  background: var(--surface-elevated);
  position: relative;
}
.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(141,36,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 700;
  line-height: 0.55;
  color: var(--primary);
  opacity: 0.28;
  display: block;
  margin-bottom: var(--sp-4);
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: var(--sp-8);
}

.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.testimonial__avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 15px; color: var(--text); }
.testimonial__role { margin-top: 2px; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta {
  padding: var(--section-lg) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(141,36,26,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.cta__inner { text-align: center; position: relative; z-index: 1; }
.cta__pre { margin-bottom: var(--sp-3); }

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7.5vw, 80px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.cta__sub {
  max-width: 500px;
  margin: 0 auto var(--sp-8);
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.cta__copy-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(6px);
}
.cta__copy-email:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}
.cta__copy-email.is-copied {
  border-color: rgba(34,197,94,0.55);
  color: #22c55e;
  background: rgba(34,197,94,0.08);
}
.cta__copy-icon {
  font-size: 11px;
  opacity: 0.5;
  transition: opacity 0.18s;
}
.cta__copy-email:hover .cta__copy-icon { opacity: 1; }

.cta__availability {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta__avail-dot {
  display: block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-avail 2.5s ease-in-out infinite;
}
@keyframes pulse-avail {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: var(--sp-12) 0 var(--sp-6);
  border-top: 1px solid var(--border-surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-6);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__tagline { max-width: 270px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.footer__nav-title { margin-bottom: var(--sp-3); }
.footer__links { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer__link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
  padding: 4px 0;
}
.footer__link:hover { color: var(--text); }

.footer__email {
  display: block;
  font-size: 14px;
  color: var(--primary-light);
  margin-bottom: var(--sp-1);
  transition: opacity var(--dur-fast);
}
.footer__email:hover { opacity: 0.65; }
.footer__location { font-size: 13px; color: var(--text-muted); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-surface);
}
.footer__legal, .footer__credit {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.4;
}

/* ================================================================
   ABOUT / TEAM
   ================================================================ */
.about { padding: var(--section-lg) 0; }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.about__content { max-width: 520px; }

.about__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: var(--sp-3) 0 var(--sp-4);
}

.about__desc { margin-bottom: var(--sp-6); }

.about__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.about__check {
  color: var(--primary-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1.22);
  transform-origin: 78% 50%;
  filter: saturate(0.5) brightness(0.62);
  transition: filter var(--dur-slow) var(--ease-out), transform var(--dur-slower) var(--ease-out);
}
.about__img-wrap:hover .about__photo {
  filter: saturate(0.65) brightness(0.72);
  transform: scale(1.26);
  transform-origin: 78% 50%;
}
.about__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(24,11,9,0.72) 0%, transparent 48%),
    linear-gradient(145deg, rgba(141,36,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about__img-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--sp-2);
}
.about__caption-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-rec 2.2s ease-in-out infinite;
}

/* ================================================================
   TESTIMONIALS GRID
   ================================================================ */
.testimonials { padding: var(--section-lg) 0; background: var(--surface-elevated); position: relative; }
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(141,36,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  position: relative;
  z-index: 1;
}

.tcard {
  background: var(--surface-low);
  border: 1px solid var(--border-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--dur-mid) var(--ease-out),
              background var(--dur-mid) var(--ease-out);
}
.tcard:hover { border-color: rgba(141,36,26,0.3); background: var(--surface-container); }

.tcard__quote {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.35;
  user-select: none;
}

.tcard__text {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border-surface);
}
.tcard__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-surface);
}
.tcard__name { font-weight: 600; font-size: 14px; color: var(--text); line-height: 1.3; }
.tcard__role { margin-top: 2px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 var(--sp-6); }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: var(--sp-16) var(--sp-6) var(--sp-12);
    gap: var(--sp-8);
  }
  .hero__visual { display: none; }
  .stats::before, .stats::after { left: var(--sp-6); right: var(--sp-6); }
  .work__grid { padding: 0 var(--sp-6); }
  .deco-browser { display: none; }
  .deco-bracket { display: none; }
}

/* Phablet */
@media (max-width: 900px) {
  .nav__inner { padding: 0 var(--sp-3); }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(24,11,9,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: var(--sp-6) var(--sp-4);
    border-bottom: 1px solid var(--border-surface);
    gap: var(--sp-4);
    align-items: flex-start;
  }
  .nav.is-open .nav__link { font-size: 22px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--border-surface); padding: var(--sp-6) var(--sp-4); }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: var(--sp-6); }

  .work__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 var(--sp-3);
  }
  .work-card:nth-child(3) { border-radius: 0; }
  .work-card:nth-child(4) { border-radius: 0; }
  .work-card:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
  .work-card:nth-child(5) { border-radius: 0 0 0 var(--r-lg); }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .process-step__line { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about__content { max-width: 100%; }

  .testimonials__grid { grid-template-columns: 1fr; gap: var(--sp-3); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --section-lg: 80px; --section-sm: 48px; }

  .container { padding: 0 var(--sp-2); }
  .hero__inner { padding: var(--sp-12) var(--sp-2) var(--sp-8); }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats::before, .stats::after { left: var(--sp-2); right: var(--sp-2); }

  .work__grid { grid-template-columns: 1fr; padding: 0 var(--sp-2); }
  .work-card { border-radius: var(--r-lg) !important; }
  .work-card__overlay { opacity: 1; }
  .work-card__info, .work-card__arrow { transform: translateY(0); }

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

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }
}

/* ================================================================
   SCENE DECORATIONS — Animated background visuals
   ================================================================ */

/* Container */
.scene-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* ── Keyframe animations ─── */
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-22px) rotate(-3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(-12px) rotate(2deg); }
  50%       { transform: translateY(14px) rotate(2deg); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(6px) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(-1deg); }
}
@keyframes floatD {
  0%, 100% { transform: translateY(0px) rotate(4deg) skewX(-8deg); }
  50%       { transform: translateY(-28px) rotate(4deg) skewX(-8deg); }
}
@keyframes driftX {
  0%, 100% { transform: translateX(0) rotate(-2deg); }
  50%       { transform: translateX(12px) rotate(-2deg); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulseCross {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.25); }
}
@keyframes fadeWave {
  0%, 100% { opacity: 0.04; }
  50%       { opacity: 0.10; }
}

/* ── Browser mockup frames ─── */
.deco-browser {
  position: absolute;
  border: 1px solid rgba(141, 36, 26, 0.22);
  border-radius: var(--r-base);
  background: rgba(24, 11, 9, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.deco-browser--lg {
  width: 340px;
  top: 8%;
  right: 2%;
  animation: floatA 9s ease-in-out infinite;
  opacity: 0.52;
  box-shadow: 0 0 60px rgba(141, 36, 26, 0.12), 0 24px 64px rgba(0,0,0,0.5);
}
.deco-browser--sm {
  width: 200px;
  bottom: 18%;
  left: 3%;
  animation: floatB 11s ease-in-out infinite;
  opacity: 0.38;
  box-shadow: 0 0 40px rgba(141, 36, 26, 0.08), 0 16px 40px rgba(0,0,0,0.4);
}
.deco-browser--md {
  width: 240px;
  bottom: 12%;
  right: 28%;
  animation: floatC 13s ease-in-out infinite;
  opacity: 0.30;
  box-shadow: 0 0 40px rgba(141, 36, 26, 0.08), 0 16px 40px rgba(0,0,0,0.4);
}

/* Toolbar */
.deco-browser__toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(141, 36, 26, 0.15);
  background: rgba(141, 36, 26, 0.05);
  flex-shrink: 0;
}
.deco-browser__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(248, 220, 216, 0.15);
  flex-shrink: 0;
}
.deco-browser__dot:first-child { background: rgba(141, 36, 26, 0.5); }
.deco-browser__bar {
  flex: 1;
  height: 12px;
  border-radius: var(--r-full);
  background: rgba(248, 220, 216, 0.07);
  margin-left: 4px;
}

/* Body */
.deco-browser__body {
  display: flex;
  gap: 0;
  flex: 1;
  min-height: 120px;
}
.deco-browser__sidebar {
  width: 32px;
  padding: 10px 6px;
  border-right: 1px solid rgba(141, 36, 26, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.deco-browser__icon {
  width: 20px;
  height: 20px;
  border-radius: var(--r-sm);
  background: rgba(141, 36, 26, 0.18);
}
.deco-browser__icon:first-child { background: rgba(141, 36, 26, 0.4); }
.deco-browser__main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deco-browser__img-placeholder {
  width: 100%;
  height: 72px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(141,36,26,0.12) 0%, rgba(248,220,216,0.05) 100%);
  border: 1px solid rgba(141,36,26,0.1);
}
.deco-browser__line {
  height: 7px;
  border-radius: var(--r-full);
  background: rgba(248, 220, 216, 0.09);
}

/* Timeline row */
.deco-browser__timeline {
  border-top: 1px solid rgba(141, 36, 26, 0.12);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.deco-browser__tl-track {
  height: 4px;
  border-radius: var(--r-full);
  background: rgba(248,220,216,0.06);
  position: relative;
}
.deco-browser__tl-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  border-radius: var(--r-full);
  background: rgba(141, 36, 26, 0.55);
}
.deco-browser__tl-track::after {
  content: '';
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.deco-browser__swatches {
  display: flex;
  gap: 4px;
}
.deco-browser__swatches span {
  width: 12px;
  height: 12px;
  border-radius: var(--r-sm);
}
.deco-browser__swatches span:nth-child(1) { background: rgba(141,36,26,0.6); }
.deco-browser__swatches span:nth-child(2) { background: rgba(248,220,216,0.2); }
.deco-browser__swatches span:nth-child(3) { background: rgba(75,23,17,0.7); }
.deco-browser__swatches span:nth-child(4) { background: rgba(248,220,216,0.1); }
.deco-browser__swatches span:nth-child(5) { background: rgba(141,36,26,0.3); }

/* ── Ralies mark watermarks ─── */
.deco-mark {
  position: absolute;
  pointer-events: none;
}
.deco-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.deco-mark--1 {
  width: 400px;
  top: 40%;
  left: -6%;
  opacity: 0.10;
  animation: fadeWave 10s ease-in-out infinite;
}
.deco-mark--2 {
  width: 200px;
  bottom: 6%;
  right: 3%;
  opacity: 0.12;
  animation: fadeWave 14s ease-in-out 3s infinite;
}

/* ── Parallelogram stripe accents ─── */
.deco-para {
  position: absolute;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  border: 0;
}
.deco-para--1 {
  width: 460px;
  height: 88px;
  top: 4%;
  left: -6%;
  background: rgba(141, 36, 26, 0.06);
  outline: 1px solid rgba(141, 36, 26, 0.18);
  box-shadow: inset 0 0 40px rgba(141,36,26,0.04);
  animation: driftX 16s ease-in-out infinite;
}
.deco-para--2 {
  width: 300px;
  height: 52px;
  bottom: 26%;
  right: 4%;
  background: rgba(141, 36, 26, 0.04);
  outline: 1px solid rgba(141, 36, 26, 0.14);
  animation: driftX 20s ease-in-out 4s infinite;
}
.deco-para--3 {
  width: 220px;
  height: 38px;
  top: 58%;
  left: 36%;
  background: transparent;
  outline: 1px solid rgba(248, 220, 216, 0.08);
  animation: floatD 18s ease-in-out 7s infinite;
}

/* ── Crosshair / targeting elements ─── */
.deco-cross {
  position: absolute;
  width: 20px;
  height: 20px;
}
.deco-cross::before,
.deco-cross::after {
  content: '';
  position: absolute;
  background: rgba(141, 36, 26, 0.45);
  border-radius: var(--r-full);
}
.deco-cross::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.deco-cross::after  { width: 1px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }

.deco-cross--1 {
  top: 18%;
  left: 46%;
  animation: pulseCross 4s ease-in-out infinite;
}
.deco-cross--2 {
  bottom: 22%;
  left: 20%;
  animation: pulseCross 5.5s ease-in-out 1.5s infinite;
}
.deco-cross--3 {
  top: 72%;
  right: 12%;
  animation: pulseCross 7s ease-in-out 3s infinite;
}

/* ── Corner bracket elements (viewfinder) ─── */
.deco-bracket {
  position: absolute;
  width: 40px;
  height: 40px;
}
.deco-bracket--tl {
  top: 12%;
  left: 8%;
  border-top: 1.5px solid rgba(141, 36, 26, 0.25);
  border-left: 1.5px solid rgba(141, 36, 26, 0.25);
  animation: floatA 12s ease-in-out 2s infinite;
}
.deco-bracket--br {
  bottom: 22%;
  right: 8%;
  border-bottom: 1.5px solid rgba(141, 36, 26, 0.20);
  border-right: 1.5px solid rgba(141, 36, 26, 0.20);
  animation: floatB 15s ease-in-out 5s infinite;
}

/* ── CTA section decorations ─── */
.cta { position: relative; overflow: hidden; }
.cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta .container { position: relative; z-index: 1; }

.deco-mark--cta {
  width: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  animation: fadeWave 12s ease-in-out infinite;
}
.deco-para--cta1 {
  width: 500px;
  height: 90px;
  top: -10%;
  right: -5%;
  background: rgba(141, 36, 26, 0.04);
  outline: 1px solid rgba(141, 36, 26, 0.08);
  animation: driftX 22s ease-in-out infinite;
}
.deco-para--cta2 {
  width: 360px;
  height: 60px;
  bottom: -5%;
  left: -4%;
  background: transparent;
  outline: 1px solid rgba(141, 36, 26, 0.06);
  animation: driftX 18s ease-in-out 8s infinite reverse;
}

/* ================================================================
   BACKGROUND COMPUTER DECORATIONS
   ================================================================ */
.bg-computers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-computer {
  position: absolute;
  will-change: transform, opacity;
  opacity: 0;
  transform-origin: center center;
}

.bg-computer img {
  display: block;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.bg-computer--main {
  width: 400px;
  right: 3vw;
  top: calc(50vh - 160px);
  filter: saturate(0.5) brightness(0.90) blur(0.4px);
}

.bg-computer--showcase {
  width: 480px;
  left: -20px;
  top: calc(50vh - 210px);
  mix-blend-mode: screen;
  filter: saturate(0.70) brightness(0.65) blur(0.4px);
}

/* ── Reduced Motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { animation: none; }
  .bg-computers { display: none; }
  html { scroll-behavior: auto; }
}
