/* ────── Base reset ────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100dvh;
  line-height: 1.5;
  cursor: none;
}
@media (max-width: 920px), (hover: none) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg, video, canvas { display: block; max-width: 100%; }
::selection { background: var(--color-neon); color: #000; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-neon); color: #000;
  padding: 8px 12px; border-radius: 999px; font-weight: 700; z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Bruit overlay */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05; mix-blend-mode: overlay;
}

/* ────── Helpers ────── */
.wrap { width: min(1440px, 92vw); margin: 0 auto; }
.display { font-family: var(--font-display); font-weight: 600; line-height: 0.92; letter-spacing: -0.02em; }
.h-mega { font-size: clamp(56px, 13vw, 220px); }
.h-big  { font-size: clamp(40px, 7.5vw, 130px); }
.h-med  { font-size: clamp(32px, 4.5vw, 64px); }
.eyebrow {
  font-family: var(--font-sans); font-weight: 500; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted);
}
.eyebrow--neon { color: var(--color-neon); }
.lead { font-size: clamp(16px,1.4vw,20px); color: #cfcfd5; max-width: 48ch; }
.grad-text {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: normal;
}

/* ────── Custom cursor ────── */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 14px; height: 14px;
  border-radius: 50%; background: var(--color-pink);
  pointer-events: none; mix-blend-mode: difference; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-wonda), height .25s var(--ease-wonda), background .25s;
}
.cursor-dot.is-link { width: 54px; height: 54px; background: transparent; border: 1.5px solid var(--color-pink); }
@media (hover: none) { .cursor-dot { display: none; } }

/* ────── Reveal ────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease-out-wonda), transform .9s var(--ease-out-wonda); }
.reveal.in { opacity: 1; transform: none; }

/* ────── Nav ────── */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: min(1320px, 92vw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: rgba(17,17,20,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--color-border); border-radius: 999px;
}
.nav .logo { font-weight: 700; font-size: 22px; letter-spacing: -0.03em; display: inline-flex; align-items: center; gap: 4px; }
.nav .logo .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  transform: translateY(-3px); margin-left: 2px;
}
.nav-links { display: flex; gap: 6px; }
.nav-links a, .nav-links .nav-menu li a {
  padding: 10px 14px; border-radius: 999px; font-size: 14px; color: #cfcfd5;
  transition: background .25s var(--ease-wonda), color .25s;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--color-text); }
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.nav-cta {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  color: #fff;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 24px -10px rgba(245,103,114,0.55);
  transition: transform .3s var(--ease-wonda), box-shadow .3s var(--ease-wonda);
}
.nav-cta:hover { transform: scale(1.03); box-shadow: 0 12px 30px -8px rgba(186,107,255,0.7); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ────── Buttons ────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px; border-radius: 999px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  color: #fff;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 12px 32px -10px rgba(245,103,114,0.6);
  transition: transform .3s var(--ease-wonda), box-shadow .3s var(--ease-wonda);
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 16px 40px -8px rgba(186,107,255,0.7); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 26px; border-radius: 999px;
  border: 1px solid var(--color-border-strong); color: var(--color-text);
  font-weight: 600; font-size: 15px;
  transition: background .3s var(--ease-wonda);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }

/* ────── Hero (deep space WebGL + content overlay) ────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  filter: contrast(1.05) brightness(0.85);
}

/* Title zone : exactly 100dvh, content vertically centered, above the canvas */
.title-wrap {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 0 0;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 22ch;
  color: var(--color-text);
}
.hero .grad-text {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.hero .lead {
  margin-top: 28px;
  color: #cfcfd5;
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.5;
}
.hero .lead strong { color: var(--color-text); }
.hero-cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Devices showcase — peek-then-scale on scroll */
.devices {
  position: relative;
  margin-top: -120px; /* devices peek into the title-wrap viewport */
  width: 100%;
  max-width: 1100px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
  transform-origin: center top;
  will-change: transform;
  z-index: 4;
}

/* MacBook */
.laptop {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotateY(-8deg) rotateX(4deg);
  width: 480px;
  z-index: 2;
  transition: transform .8s ease;
}
.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #000;
  border-radius: 14px;
  border: 8px solid #1a1a1f;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}
.laptop-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #15151A;
  border-bottom: 1px solid var(--color-border);
}
.laptop-dots { display: flex; gap: 5px; }
.laptop-dots span { width: 9px; height: 9px; border-radius: 50%; }
.laptop-dots span:nth-child(1) { background: #FF5F57; }
.laptop-dots span:nth-child(2) { background: #FEBC2E; }
.laptop-dots span:nth-child(3) { background: #28C840; }
.laptop-url {
  flex: 1;
  background: #0a0a0d;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: #9a9aa3;
}
.laptop-stand {
  width: 120px;
  height: 14px;
  background: #1a1a1f;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Phone */
.phone {
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translateY(-50%) rotateY(20deg) rotateZ(-6deg);
  width: 130px;
  aspect-ratio: 9/19;
  background: #0a0a0d;
  border-radius: 24px;
  border: 6px solid #1a1a1f;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform .8s ease;
}
.phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.phone .pscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0d;
  color: #fff;
}

/* Tablet */
.tablet {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%) rotateY(-25deg) rotateZ(8deg);
  width: 240px;
  aspect-ratio: 3/4;
  background: #0a0a0d;
  border-radius: 18px;
  border: 6px solid #1a1a1f;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform .8s ease;
}

/* Mock site shared */
.mock {
  height: 100%;
  background: radial-gradient(circle at 80% 30%, #1a1a1f, #0a0a0d 70%);
  color: #fff;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-lo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.mock-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: auto;
}
.mock-h1 em { font-style: normal; color: #FF6B47; }
.mock-btn {
  display: inline-flex;
  padding: 6px 12px;
  background: #FF6B47;
  color: #000;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-img {
  flex: 1;
  background: linear-gradient(135deg, #1f1f25, #0a0a0d);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a3a40;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mock-img--big { min-height: 80px; }

/* Phone variant — Vodka Nadé */
.mock--phone {
  background: linear-gradient(180deg, #0a0508, #1a0810);
}
.mock--phone .mock-lo {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFE9D2;
}
.mock--phone .mock-h1 {
  font-size: 20px;
  color: #FFE9D2;
}
.mock--phone .mock-h1 em { color: #E94B4B; }
.mock--phone .mock-btn {
  background: #E94B4B;
  color: #fff;
}

/* Laptop variant — Bromotors */
.mock--laptop {
  padding: 24px;
  gap: 12px;
}
.mock-laptop-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-nav {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #9a9aa3;
}

/* Tablet variant — KDS Prime */
.mock--tablet {
  background: linear-gradient(180deg, #050a14, #1a2a3a);
  padding: 18px;
}
.mock--tablet .mock-lo {
  color: #D4AF37;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}
.mock--tablet .mock-h1 {
  font-size: 30px;
  font-family: var(--font-display);
}
.mock--tablet .mock-h1 em { color: #D4AF37; }
.mock--tablet .mock-btn {
  background: #D4AF37;
  color: #000;
}
.mock--tablet .mock-img {
  background: linear-gradient(135deg, #1a2a3a, #050a14);
}

/* Device label (under each device, small) */
.device-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.6;
}

/* Hero stats footer */
.hero-stats {
  margin: 0 0 28px 0;
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  color: var(--color-muted);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats .stat-num { font-size: 20px; }
.hero-stats .stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.hero-stats .stat-sep {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

/* Mobile : stack devices vertically (or hide tablet/phone, show only laptop) */
@media (max-width: 880px) {
  .devices { transform: scale(0.6); }
  .hero-stats { flex-direction: column; gap: 14px; padding-bottom: 64px; }
}

/* ────── Marquee ────── */
.marquee {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden; white-space: nowrap;
  background: #0c0c0e; position: relative; z-index: 2;
}
.marquee-track {
  --marquee-duration: 32s;
  display: inline-flex; align-items: center; gap: 48px;
  animation: wonda-marquee var(--marquee-duration) linear infinite;
}
.marquee-row { display: inline-flex; align-items: center; gap: 48px; }
.marquee-item, .marquee-star {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
}
.marquee-star { color: var(--color-neon); font-size: 0.7em; }
@keyframes wonda-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────── Section helpers ────── */
.section { padding: clamp(80px, 12vw, 180px) 0; position: relative; z-index: 2; }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 64px; max-width: 1080px; }
.section-head .num { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--color-neon); }

/* ────── Bento Services ────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}
.span-12 { grid-column: span 12; }
.span-8  { grid-column: span 8; }
.span-6  { grid-column: span 6; }
.span-4  { grid-column: span 4; }
.row-2   { grid-row: span 2; }

.card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color .4s var(--ease-wonda), transform .4s var(--ease-wonda);
  will-change: transform;
}
.card:hover { border-color: var(--color-border-strong); }

.card-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.card p {
  color: #bcbcc2;
  margin-top: 14px;
  font-size: 15px;
  max-width: 42ch;
}
.card-arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  display: grid;
  place-items: center;
  color: var(--color-text);
  transition: transform .4s var(--ease-wonda), background .4s var(--ease-wonda), border-color .4s var(--ease-wonda), color .4s var(--ease-wonda);
}
.card:hover .card-arrow {
  background: var(--color-neon);
  border-color: var(--color-neon);
  transform: rotate(-45deg);
  color: #000;
}

.card--featured {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(245,103,114,0.18), transparent 50%),
    radial-gradient(120% 120% at 100% 100%, rgba(186,107,255,0.18), transparent 50%),
    var(--color-surface);
}
.card--featured h3 { font-size: clamp(36px, 4vw, 64px); }

.card-price {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px dashed var(--color-border-strong);
  font-size: 13px;
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .span-8, .span-6, .span-4 { grid-column: span 6; }
  .row-2 { grid-row: auto; }
}

/* ────── Footer ────── */
.site-footer { padding: 80px 0 32px; border-top: 1px solid var(--color-border); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h5 { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 18px; }
.foot-link { display: block; color: #cfcfd5; padding: 6px 0; font-size: 15px; transition: color .25s; }
.foot-link:hover { color: var(--color-neon); }
.foot-desc { color: #cfcfd5; max-width: 32ch; }
.foot-locations { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.foot-locations span { padding: 8px 14px; border: 1px solid var(--color-border-strong); border-radius: 999px; font-size: 13px; }
.big-mark { font-size: clamp(80px, 16vw, 240px); line-height: 0.85; letter-spacing: -0.04em; margin-top: 48px; }
.big-mark-tld { opacity: 0.4; }
.foot-bottom {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: var(--color-muted); font-size: 13px;
}
.foot-bottom .heart { color: var(--color-neon); }
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

.todo-note { color: var(--color-muted); max-width: 60ch; padding: 24px; border: 1px dashed var(--color-border-strong); border-radius: 18px; margin-top: 24px; }

/* ────── Reduced motion ────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
  body { cursor: auto; }
}


/* ────── Réalisations — perspective marquee ────── */
.reals-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 100px 0 120px;
  isolation: isolate;
  perspective: 2000px;
  perspective-origin: 50% 50%;
  background: var(--color-bg);
}
.reals-marquee::before, .reals-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 220px;
  z-index: 4;
  pointer-events: none;
}
.reals-marquee::before { left: 0; background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%); }
.reals-marquee::after { right: 0; background: linear-gradient(270deg, var(--color-bg) 0%, transparent 100%); }
.reals-marquee-head {
  width: min(1320px, 92vw);
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  z-index: 5;
}
.reals-marquee-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.reals-marquee-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
.reals-marquee-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reals-marquee-stage {
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-8deg);
}
.reals-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: reals-loop 60s linear infinite;
  will-change: transform;
}
@keyframes reals-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reals-marquee:hover .reals-marquee-track { animation-play-state: paused; }
.reals-card {
  flex: 0 0 auto;
  width: 460px;
  height: 300px;
  border-radius: 18px;
  background: var(--rc-bg, #14141a);
  box-shadow: 0 30px 80px -25px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  transition: transform .4s var(--ease-wonda, cubic-bezier(.22,1,.36,1));
}
.reals-card:hover { transform: translateY(-6px); }
.reals-card-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.reals-card-bar.is-light {
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.reals-card-dots { display: inline-flex; gap: 6px; }
.reals-card-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.reals-card-bar.is-light .reals-card-dots span { background: rgba(0,0,0,0.18); }
.reals-card-url {
  margin-left: auto; margin-right: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.reals-card-bar.is-light .reals-card-url { color: rgba(0,0,0,0.5); }
.reals-card-body {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(120% 80% at 0% 0%, var(--rc-glow, rgba(245,103,114,0.18)), transparent 60%),
    var(--rc-bg, #14141a);
  color: var(--rc-fg, #fff);
}
.reals-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-mut, rgba(255,255,255,0.55));
}
.reals-card-h {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  font-family: var(--font-display);
}
.reals-card-h em {
  font-style: normal;
  background: linear-gradient(135deg, var(--rc-acc1, var(--color-pink)), var(--rc-acc2, var(--color-purple)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reals-card-cta {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rc-cta, #fff);
  color: var(--rc-cta-fg, #000);
  font-size: 12px;
  font-weight: 700;
}
.reals-card-meta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11px;
  color: var(--rc-mut, rgba(255,255,255,0.55));
}
@media (max-width: 880px) {
  .reals-marquee-stage { transform: none; }
  .reals-card { width: 320px; height: 220px; }
  .reals-card-h { font-size: 20px; }
  .reals-marquee { padding: 60px 0 80px; }
}
