@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg: #0b1020;
  --bg-soft: #121933;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --text-soft: #b8c0e0;
  --accent: #7c5cff;
  --accent-2: #00c2ff;
  --max-width: 1200px;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 92, 255, 0.24), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #0b1020 0%, #090d18 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.35;
}

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

#app {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 80px;
}

.hero {
  padding: 0;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topbar-links {
  display: flex;
  align-items: start;
  gap: 22px;
}

.topbar-links a {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.topbar-links a[aria-current="page"] {
  color: var(--text);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.topbar-cta {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.topbar-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero-content {
  padding: 72px 32px 48px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #5e7bff);
  color: white;
}

.button-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

main {
  padding-top: 28px;
}

section {
  margin-top: 24px;
  padding: 32px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

section p,
.lead {
  margin: 0;
  max-width: 74ch;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.project-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.project-card--featured {
  grid-column: span 12;
  min-height: 340px;
}

.project-kicker {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  letter-spacing: -0.04em;
}

.project-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.project-tags span {
  display: inline-flex;
  align-items: start;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .project-card,
  .project-card--featured {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  #app {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 16px;
  }

  .hero-content,
  section {
    padding: 24px 20px;
  }

  .topbar {
    padding: 16px 20px;
  }

  .hero {
    border-radius: 20px;
  }

  section,
  .project-card {
    border-radius: 20px;
  }

  h1 {
    max-width: 100%;
  }

  .topbar-cta,
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
h1,
h2,
h3 {
  font-family: "Sora", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  letter-spacing: -0.06em;
}

h2 {
  letter-spacing: -0.05em;
}

h3 {
  letter-spacing: -0.04em;
}

.brand {
  font-family: "Sora", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-text,
.lead,
section p,
.project-card p,
.topbar-links a {
  letter-spacing: -0.01em;
}

.project-card h3 {
  line-height: 1.08;
}

.lead {
  font-size: 1.08rem;
}

@media (min-width: 900px) {
  .hero-content {
    padding: 84px 40px 56px;
  }

  section {
    padding: 38px;
  }

  .project-card {
    padding: 30px;
  }

  .topbar {
    padding: 22px 32px;
  }
}
/* HOME HERO V2 */
.hero-home {
  position: relative;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  padding-bottom: 34px;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: -8% -12% auto auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(124, 92, 255, 0.18) 0%, rgba(124, 92, 255, 0.05) 38%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}

.topbar--home {
  position: relative;
  z-index: 3;
  margin-bottom: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(680px, 1.22fr);
  gap: 6px;
  align-items: start;
  min-height: 720px;
}

.hero-copy--editorial {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 28px 0 18px 14px;
}

.hero-copy--editorial h1 {
  max-width: 8.5ch;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-copy--editorial .hero-text {
  max-width: 30ch;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  line-height: 1.62;
}

.hero-copy--editorial .hero-actions {
  margin-top: 30px;
}

.hero-video-stage {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: flex-end;
  min-height: 640px;
  margin-top: 80px;
  margin-top: 80px;
}

.hero-video-stage::before { display: none; }

.hero-video-bleed {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
  aspect-ratio: 16 / 9;
  margin-right: -10%;
  margin-bottom: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-video-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.46) 0%, rgba(7, 11, 24, 0.14) 18%, rgba(7, 11, 24, 0.08) 60%, rgba(7, 11, 24, 0.26) 100%),
    linear-gradient(180deg, rgba(7, 11, 24, 0.04) 0%, rgba(7, 11, 24, 0.20) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.96) contrast(1.04) brightness(0.82);
}

.hero-home + main {
  padding-top: 80px;
}

@media (max-width: 1180px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy--editorial {
    padding: 24px 0 0;
    max-width: 860px;
  }

  .hero-copy--editorial h1 {
    max-width: 8ch;
  }

  .hero-copy--editorial .hero-text {
    max-width: 48ch;
  }

  .hero-video-stage {
    min-height: auto;
    margin-top: 26px;
  }

  .hero-video-bleed {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero-home + main {
    padding-top: 26px;
  }
}

@media (max-width: 720px) {
  .topbar--home {
    margin-bottom: 0;
  }

  .hero-copy--editorial {
    padding: 14px 0 0;
  }

  .hero-copy--editorial h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .hero-video-bleed {
    border-radius: 22px;
  }

  .hero-home + main {
    padding-top: 20px;
  }
}

/* HERO HEADER TUNE */
.hero-editorial {
  gap: 18px !important;
  align-items: center !important;
  min-height: 620px !important;
}

.hero-copy--editorial {
  padding: 40px 0 64px 14px !important;
}

.hero-video-stage {
  min-height: 620px !important;
  align-items: center !important;
  padding-top: 54px !important;
  padding-right: 34px !important;
}

.hero-video-bleed {
  margin-right: -1.5% !important;
  margin-bottom: 18px !important;
}

.hero-home + main {
  padding-top: 56px !important;
}

/* HERO FIX + TEXT MOTION */
.hero-editorial {
  grid-template-columns: minmax(300px, 0.78fr) minmax(680px, 1.22fr) !important;
  gap: 18px !important;
  align-items: center !important;
  min-height: 620px !important;
}

.hero-copy--editorial {
  padding: 40px 0 64px 14px !important;
}

.hero-copy--editorial h1 {
  max-width: 8.5ch !important;
  font-size: clamp(3.6rem, 7vw, 6.3rem) !important;
}

.hero-copy--editorial .hero-text {
  max-width: 30ch !important;
}

.hero-video-stage {
  min-height: 620px !important;
  align-items: center !important;
  padding-top: 54px !important;
  padding-right: 34px !important;
}

.hero-video-bleed {
  width: min(100%, 1060px) !important;
  margin-right: -1.5% !important;
  margin-bottom: 18px !important;
}

.hero-home + main {
  padding-top: 56px !important;
}

.button,
.topbar-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  line-height: 1 !important;
  overflow: hidden !important;
  transform: none !important;
}

.button:hover,
.topbar-cta:hover,
.button:active,
.topbar-cta:active {
  transform: none !important;
}

.button-label {
  display: inline-block;
  transform: translateY(0);
  transition: transform 180ms ease, letter-spacing 180ms ease;
  will-change: transform;
}

.button:hover .button-label,
.topbar-cta:hover .button-label {
  transform: translateY(-1px);
  letter-spacing: 0.01em;
}

.button:active .button-label,
.topbar-cta:active .button-label {
  transform: translateY(1px);
}
/* GLOBAL TYPE + SPACING POLISH */
body {
  letter-spacing: -0.012em;
}

#app {
  width: min(calc(100% - 40px), var(--max-width));
}

.topbar {
  min-height: 78px;
  padding-block: 18px;
}

.topbar-links a {
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.brand {
  font-size: 1.02rem;
}

.hero-copy--editorial .eyebrow,
.hero-content .eyebrow,
.project-kicker,
.project-kicker,
.hero-media-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.hero-copy--editorial h1,
.hero-content h1 {
  text-wrap: balance;
}

.hero-copy--editorial .hero-text,
.hero-content .hero-text {
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.72;
  color: rgba(245, 247, 255, 0.78);
}

.hero-actions {
  gap: 16px;
  margin-top: 34px;
}

.button,
.topbar-cta {
  padding-inline: 20px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 600;
}

main {
  padding-top: 0;
}

section {
  margin-top: 30px;
  padding: 38px 36px;
  border-radius: 28px;
}

section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1.03;
}

.lead,
section p,
.project-card p {
  font-size: 1.04rem;
  line-height: 1.78;
  letter-spacing: -0.012em;
}

.lead {
  max-width: 62ch;
  color: rgba(245, 247, 255, 0.82);
}

.projects-grid {
  gap: 22px;
  margin-top: 28px;
}

.project-card {
  padding: 30px;
  border-radius: 22px;
}

.project-card h3 {
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.08;
}

.project-tags {
  gap: 12px;
}

.project-tags span {
  min-height: 36px;
  padding-inline: 13px;
  font-size: 0.89rem;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  #app {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    min-height: 0;
    padding: 16px 18px;
  }

  section {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .project-card {
    padding: 24px;
  }
}

/* HOME VISUAL PLACEHOLDERS */
.visual-band-section,
.visual-split-section {
  position: relative;
  overflow: hidden;
}

.visual-band-section {
  display: grid;
  gap: 26px;
}

.visual-band-copy,
.visual-split-copy {
  max-width: 860px;
}

.visual-band-placeholder,
.visual-split-placeholder {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.visual-band-placeholder {
  aspect-ratio: 16 / 8.2;
}

.visual-split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 24px;
  align-items: center;
}

.visual-split-placeholder {
  aspect-ratio: 16 / 10;
}

.visual-band-placeholder::before,
.visual-split-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.46;
}

.visual-band-placeholder__inner,
.visual-split-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 26px;
}

.visual-band-placeholder__inner span,
.visual-split-placeholder__inner span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  color: rgba(245,247,255,0.84);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .visual-split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .visual-band-placeholder,
  .visual-split-placeholder {
    border-radius: 22px;
  }

  .visual-band-placeholder::before,
  .visual-split-placeholder::before {
    inset: 10px;
    border-radius: 16px;
  }

  .visual-band-placeholder__inner,
  .visual-split-placeholder__inner {
    padding: 18px;
  }
}
/* PROJECT SHOWCASES */
.project-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 26px;
  align-items: center;
}

.project-showcase--reverse {
  grid-template-columns: minmax(420px, 1.18fr) minmax(320px, 0.82fr);
}

.project-showcase--reverse .project-showcase__copy {
  order: 2;
}

.project-showcase--reverse .project-showcase__visual {
  order: 1;
}

.project-showcase__copy {
  max-width: 720px;
}

.project-showcase__visual {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.project-showcase__visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.46;
}

.project-showcase__visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 26px;
}

.project-showcase__visual-inner span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  color: rgba(245,247,255,0.84);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .project-showcase,
  .project-showcase--reverse {
    grid-template-columns: 1fr;
  }

  .project-showcase--reverse .project-showcase__copy,
  .project-showcase--reverse .project-showcase__visual {
    order: initial;
  }
}

@media (max-width: 720px) {
  .project-showcase__visual {
    min-height: 300px;
    border-radius: 22px;
  }

  .project-showcase__visual::before {
    inset: 10px;
    border-radius: 16px;
  }

  .project-showcase__visual-inner {
    padding: 18px;
  }
}

/* HOME CTA + GLOBAL FOOTER */
.home-cta-section {
  text-align: left;
}

.home-cta-section h2 {
  max-width: 16ch;
}

.home-cta-section .lead {
  max-width: 64ch;
}

.site-footer {
  margin-top: 36px;
  padding: 34px 30px 28px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 194, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(124, 92, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__top {
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__brand {
  max-width: 620px;
}

.site-footer__brand h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.02;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__copy {
  color: rgba(245,247,255,0.76);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: rgba(245,247,255,1);
}

.site-footer__copy {
  margin: 0;
  max-width: 420px;
  text-align: right;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 26px 22px 22px;
    border-radius: 22px;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__copy {
    text-align: left;
    max-width: none;
  }
}

/* EDITORIAL FOOTER */
.site-footer--editorial {
  margin-top: 34px;
  padding: 8px 0 4px;
  border: 0;
  background: none;
  box-shadow: none;
  text-align: center;
}

.site-footer__editorial-top {
  margin: 0 0 10px;
  color: rgba(245,247,255,0.92);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-footer__editorial-bottom {
  margin: 0;
  color: rgba(245,247,255,0.68);
  font-size: 0.93rem;
  line-height: 1.9;
  letter-spacing: -0.01em;
}

.site-footer__editorial-bottom a {
  color: rgba(245,247,255,0.68);
}

.site-footer__editorial-bottom a:hover {
  color: rgba(245,247,255,1);
}

.site-footer__editorial-bottom span {
  display: inline-block;
  margin: 0 8px;
  color: rgba(245,247,255,0.28);
}

@media (max-width: 900px) {
  .site-footer__editorial-top {
    font-size: 0.96rem;
  }

  .site-footer__editorial-bottom {
    font-size: 0.89rem;
    line-height: 1.8;
  }

  .site-footer__editorial-bottom span {
    margin: 0 6px;
  }
}


/* HOME TICKER BAND */
.ticker-section {
  padding-top: 10px;
  padding-bottom: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.ticker-shell {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    radial-gradient(circle at 15% 50%, rgba(0, 194, 255, 0.07), transparent 28%),
    radial-gradient(circle at 85% 50%, rgba(124, 92, 255, 0.10), transparent 30%);
}

.ticker-shell::before,
.ticker-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.ticker-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10,11,15,0.96), rgba(10,11,15,0));
}

.ticker-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10,11,15,0.96), rgba(10,11,15,0));
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 56px;
  padding: 16px 0;
  animation: guapiTicker 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  flex: 0 0 auto;
  white-space: nowrap;
  color: rgba(245,247,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes guapiTicker {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 28px)); }
}

@media (max-width: 720px) {
  .ticker-track {
    gap: 34px;
    padding: 14px 0;
    animation-duration: 24s;
  }

  .ticker-track span {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .ticker-shell::before,
  .ticker-shell::after {
    width: 48px;
  }
}

/* FLIP TEST CARD */
.project-card.project-card--flip {
  display: block;
  padding: 0;
  min-height: 280px;
  background: transparent;
  border: 0;
  box-shadow: none;
  perspective: 1400px;
  cursor: pointer;
  outline: none;
}

.project-card--flip:focus-visible .project-card-face {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    0 0 0 3px rgba(124, 92, 255, 0.22),
    var(--shadow);
}

.project-card-flip-inner {
  position: relative;
  min-height: 280px;
  transform-style: preserve-3d;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--flip.is-flipped .project-card-flip-inner {
  transform: rotateY(180deg);
}

.project-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.project-card-face--back {
  transform: rotateY(180deg);
}

.project-card-hint {
  margin-top: 14px !important;
  color: rgba(245,247,255,0.52) !important;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .project-card-flip-inner {
    transition: none;
  }
}

/* FLIP CARD POLISH V2 */
.project-card.project-card--flip {
  min-height: 332px;
}

.project-card-flip-inner {
  min-height: 332px;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card-face {
  min-height: 332px;
  gap: 8px;
  padding: 28px 28px 24px;
  overflow: hidden;
  justify-content: flex-start;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    radial-gradient(circle at 85% 18%, rgba(124, 92, 255, 0.12), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(0, 194, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.028));
  box-shadow:
    0 18px 48px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.project-card--flip .project-kicker {
  margin-bottom: 6px;
}

.project-card--flip h3 {
  max-width: 12ch;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.project-card--flip .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.project-card--flip .project-card-hint {
  margin-top: 12px !important;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  color: rgba(245,247,255,0.62) !important;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* FLIP CARD POLISH V3 */
.project-card.project-card--flip {
  min-height: 372px;
}

.project-card-flip-inner {
  min-height: 372px;
}

.project-card-face {
  min-height: 372px;
  box-sizing: border-box;
}

.project-card--flip h3 {
  max-width: 15ch;
  line-height: 0.98;
  letter-spacing: -0.032em;
}

.project-card-face--back {
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(0, 194, 255, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}

.project-card-face--back .project-kicker {
  color: rgba(170, 196, 255, 0.88);
}

.project-card-face--back h3 {
  color: rgba(244, 248, 255, 0.98);
  text-shadow: 0 0 18px rgba(124, 92, 255, 0.10);
}

.project-card-face--back p:not(.project-card-hint) {
  color: rgba(228, 234, 246, 0.90);
}

.project-card-face--back .project-tags {
  gap: 8px;
  padding-top: 14px;
}

.project-card-face--back .project-tags span {
  border-color: rgba(160, 184, 255, 0.18);
  background: rgba(140, 156, 255, 0.06);
  color: rgba(232, 238, 252, 0.88);
}

.project-card-face--back .project-card-hint {
  margin-top: 10px !important;
  color: rgba(210, 220, 244, 0.72) !important;
  border-color: rgba(170, 190, 255, 0.16);
  background: rgba(140, 156, 255, 0.05);
}

/* FLIP CARD LIGHT BACK TEST */
.project-card.project-card--flip {
  min-height: 388px;
}

.project-card-flip-inner {
  min-height: 388px;
}

.project-card-face {
  min-height: 388px;
}

.project-card-face--back {
  padding-bottom: 28px;
  border-color: rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.08), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(0, 194, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(246,244,239,0.98), rgba(238,235,229,0.97));
  box-shadow:
    0 18px 48px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.project-card-face--back .project-kicker {
  color: rgba(48, 58, 76, 0.72);
}

.project-card-face--back h3 {
  color: #171a20;
  text-shadow: none;
}

.project-card-face--back p:not(.project-card-hint) {
  color: rgba(23, 26, 32, 0.78);
}

.project-card-face--back .project-tags {
  gap: 8px;
  padding-top: 16px;
}

.project-card-face--back .project-tags span {
  border-color: rgba(23, 26, 32, 0.10);
  background: rgba(23, 26, 32, 0.04);
  color: rgba(23, 26, 32, 0.78);
}

.project-card-face--back .project-card-hint {
  margin-top: 12px !important;
  color: rgba(23, 26, 32, 0.60) !important;
  border-color: rgba(23, 26, 32, 0.10);
  background: rgba(23, 26, 32, 0.04);
}

/* FLIP CARD CHIP ALIGN + HOVER MATCH */
.project-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.project-card-face--back .project-tags span,
.project-card--flip .project-card-hint {
  transition: transform 180ms ease, letter-spacing 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  will-change: transform;
}

.project-card-face--back .project-tags span:hover,
.project-card--flip .project-card-hint:hover {
  transform: translateY(-1px);
  letter-spacing: 0.01em;
}

.project-card-face--back .project-tags span:active,
.project-card--flip .project-card-hint:active {
  transform: translateY(1px);
}

.project-card--flip .project-card-hint {
  min-height: 32px;
}

.project-card-face--back .project-tags span {
  min-height: 34px;
}

/* FLIP CARD CONSISTENCY */
.project-tags span,
.project-tags span:hover,
.project-tags span:active {
  transform: none !important;
  letter-spacing: normal !important;
}

.project-tags span {
  cursor: default;
}

.project-card--flip .project-card-hint {
  transition:
    transform 180ms ease,
    letter-spacing 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  will-change: transform;
}

.project-card--flip .project-card-hint:hover {
  transform: translateY(-1px);
  letter-spacing: 0.01em;
}

.project-card--flip .project-card-hint:active {
  transform: translateY(1px);
}

/* TOPBAR LINKS TYPO + HOVER POLISH */
.topbar-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(214, 221, 243, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    letter-spacing 180ms ease,
    opacity 180ms ease;
  will-change: transform;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,92,255,0), rgba(124,92,255,0.75), rgba(0,194,255,0.75), rgba(0,194,255,0));
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.topbar-links a:hover {
  color: rgba(248, 250, 255, 0.98);
  transform: translateY(-1px);
  letter-spacing: 0.13em;
}

.topbar-links a:hover::after,
.topbar-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.topbar-links a[aria-current="page"] {
  color: rgba(248, 250, 255, 0.98);
}

/* PROJECTS PAGE FINAL */
.hero-content--projects h1 {
  max-width: 10.8ch;
}

.projects-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.projects-intro-band {
  padding: 18px 28px;
  overflow: hidden;
}

.projects-intro-band p {
  margin: 0;
  color: rgba(224,231,250,0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
}

.project-case--reverse {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
}

.project-case--reverse .project-case__copy {
  order: 2;
}

.project-case--reverse .project-case__visual {
  order: 1;
}

.project-case__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.project-case__copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.045em;
}

.project-case__copy .lead {
  max-width: 62ch;
}

.project-case__notes {
  margin-top: 2px;
}

.project-case__notes p {
  margin: 0;
  color: rgba(208,216,239,0.78);
  line-height: 1.72;
  font-size: 0.98rem;
}

.project-case__visual {
  min-width: 0;
}

.media-stage {
  position: relative;
  min-height: 440px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 60px rgba(0,0,0,0.24);
  overflow: hidden;
}

.media-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(140deg, rgba(255,255,255,0.02), transparent 42%);
  pointer-events: none;
}

.media-stage::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(14px);
  pointer-events: none;
}

.media-stage--bb {
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 220, 130, 0.16), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(255, 188, 76, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.028));
}

.media-stage--bb::after {
  background: radial-gradient(circle, rgba(0, 220, 130, 0.56), transparent 68%);
}

.media-stage--wet {
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 194, 255, 0.16), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(120, 220, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.028));
}

.media-stage--wet::after {
  background: radial-gradient(circle, rgba(0, 194, 255, 0.58), transparent 68%);
}

.media-stage--opoia {
  background:
    radial-gradient(circle at 84% 16%, rgba(124, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(188, 126, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.028));
}

.media-stage--opoia::after {
  background: radial-gradient(circle, rgba(124, 92, 255, 0.62), transparent 68%);
}

.media-stage__chrome {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.media-stage__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.media-stage__screen {
  position: relative;
  z-index: 1;
  min-height: 380px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,10,18,0.52);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 48px rgba(0,0,0,0.22);
  overflow: hidden;
}

.media-stage__screen--still {
  background: rgba(9,12,20,0.5);
}

.media-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

.media-placeholder--video {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
    radial-gradient(circle at 84% 14%, rgba(0, 220, 130, 0.08), transparent 22%);
}

.media-placeholder--image {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

.media-placeholder__header,
.media-placeholder__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-chip,
.media-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(245,247,255,0.84);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.media-note {
  min-height: 40px;
  padding: 10px 14px;
  justify-content: flex-start;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: rgba(245,247,255,0.88);
}

.media-placeholder__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 76%;
}

.media-placeholder__eyebrow {
  margin: 0;
  color: rgba(205, 214, 238, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-placeholder__body h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: rgba(249,250,255,0.98);
}

.media-placeholder__copy {
  margin: 0;
  color: rgba(225,232,250,0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.projects-closure {
  padding-top: 28px;
  padding-bottom: 28px;
}

.projects-closure__eyebrow {
  margin: 0 0 14px;
  color: rgba(190, 202, 232, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .project-case,
  .project-case--reverse {
    grid-template-columns: 1fr;
  }

  .project-case--reverse .project-case__copy,
  .project-case--reverse .project-case__visual {
    order: initial;
  }
}

@media (max-width: 720px) {
  .ticker-track {
    gap: 34px;
    padding: 14px 0;
    animation-duration: 24s;
  }

  .project-card.project-card--flip,
  .project-card-flip-inner,
  .project-card-face {
    min-height: 404px;
  }

  .project-card-face {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .project-card--flip h3 {
    max-width: 16ch;
  }

  .projects-intro-band {
    padding: 16px 20px;
  }

  .project-case {
    gap: 20px;
    padding: 22px 20px;
  }

  .media-stage {
    min-height: 360px;
    padding: 12px;
    border-radius: 22px;
  }

  .media-stage__screen,
  .media-placeholder {
    min-height: 300px;
  }

  .media-placeholder {
    padding: 18px;
  }

  .media-placeholder__body {
    max-width: 100%;
  }

  .media-placeholder__body h3 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .media-chip {
    font-size: 0.68rem;
  }

  .media-note {
    font-size: 0.84rem;
  }

  .topbar-links a {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }
}


/* PROJECTS HERO BREATHING SPACE */
.hero-content--projects {
  padding-bottom: 64px;
}

.projects-page {
  gap: 34px;
}

.projects-intro-band {
  margin-top: 8px;
}

@media (max-width: 720px) {
  .hero-content--projects {
    padding-bottom: 42px;
  }

  .projects-page {
    gap: 24px;
  }

  .projects-intro-band {
    margin-top: 2px;
  }
}


/* PROJECTS HERO SEPARATION V2 */
.projects-intro-band {
  display: none !important;
}

.hero-content--projects {
  padding-bottom: 82px;
}

.projects-page {
  margin-top: 6px;
  gap: 40px;
}

@media (max-width: 720px) {
  .hero-content--projects {
    padding-bottom: 52px;
  }

  .projects-page {
    margin-top: 0;
    gap: 26px;
  }
}


/* PROJECTS HERO = HOME SISTER */
.hero-projects .topbar {
  position: relative;
  z-index: 3;
  margin-bottom: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-editorial--projects {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: 18px;
  align-items: center;
  min-height: 620px;
}

.hero-copy--projects {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 40px 0 64px 14px;
}

.hero-copy--projects h1 {
  max-width: 8.4ch;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-copy--projects .hero-text {
  max-width: 31ch;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  line-height: 1.62;
}

.project-hero-ghost-stage {
  position: relative;
  min-height: 620px;
}

.project-hero-ghost-stage::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: 84%;
  height: 74%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 70% 24%, rgba(124, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 25% 75%, rgba(0, 194, 255, 0.10), transparent 28%);
  filter: blur(18px);
  pointer-events: none;
}

.project-hero-ghost-frame {
  position: absolute;
  right: -1.5%;
  bottom: 18px;
  width: min(100%, 1060px);
  aspect-ratio: 16 / 9;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.16) 0%, rgba(7, 11, 24, 0.04) 22%, rgba(7, 11, 24, 0.02) 62%, rgba(7, 11, 24, 0.08) 100%),
    radial-gradient(circle at 68% 36%, rgba(124, 92, 255, 0.14), transparent 24%),
    radial-gradient(circle at 30% 68%, rgba(0, 194, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-projects + main {
  padding-top: 56px !important;
}

@media (max-width: 1180px) {
  .hero-editorial--projects {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy--projects {
    padding: 24px 0 0;
    max-width: 860px;
  }

  .hero-copy--projects h1 {
    max-width: 8ch;
  }

  .hero-copy--projects .hero-text {
    max-width: 48ch;
  }

  .project-hero-ghost-stage {
    min-height: auto;
    margin-top: 26px;
  }

  .project-hero-ghost-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-projects + main {
    padding-top: 26px !important;
  }
}

@media (max-width: 720px) {
  .hero-copy--projects {
    padding: 14px 0 0;
  }

  .hero-copy--projects h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .project-hero-ghost-frame {
    border-radius: 22px;
  }

  .hero-projects + main {
    padding-top: 20px !important;
  }
}


/* PROJECTS = HOME LOGIC REAL */
.hero-home.hero-projects {
  position: relative;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  padding-bottom: 34px !important;
}

.hero-home.hero-projects + main {
  padding-top: 56px !important;
}

.hero-editorial--projects {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(680px, 1.22fr) !important;
  gap: 18px !important;
  align-items: center !important;
  min-height: 620px !important;
}

.hero-copy--projects {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 40px 0 64px 14px !important;
}

.hero-copy--projects h1 {
  max-width: 8.5ch !important;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.3rem) !important;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-copy--projects .hero-text {
  max-width: 30ch !important;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  line-height: 1.62;
}

.project-hero-ghost-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 620px !important;
  padding-top: 54px !important;
  padding-right: 34px !important;
}

.project-hero-ghost-stage::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 86%;
  height: 78%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 70% 24%, rgba(124, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 25% 75%, rgba(0, 194, 255, 0.10), transparent 28%);
  filter: blur(18px);
  pointer-events: none;
}

.project-hero-ghost-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 1060px);
  aspect-ratio: 16 / 9;
  margin-right: -1.5%;
  margin-bottom: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.projects-page {
  margin-top: 0 !important;
}

@media (max-width: 1180px) {
  .hero-editorial--projects {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-copy--projects {
    padding: 24px 0 0 !important;
    max-width: 860px;
  }

  .hero-copy--projects h1 {
    max-width: 8ch !important;
  }

  .hero-copy--projects .hero-text {
    max-width: 48ch !important;
  }

  .project-hero-ghost-stage {
    min-height: auto !important;
    margin-top: 26px;
    padding-top: 0 !important;
    padding-right: 0 !important;
  }

  .project-hero-ghost-frame {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero-home.hero-projects + main {
    padding-top: 26px !important;
  }
}

@media (max-width: 720px) {
  .hero-copy--projects {
    padding: 14px 0 0 !important;
  }

  .hero-copy--projects h1 {
    max-width: 100% !important;
    font-size: clamp(3.2rem, 15vw, 5.4rem) !important;
  }

  .project-hero-ghost-frame {
    border-radius: 22px;
  }

  .hero-home.hero-projects + main {
    padding-top: 20px !important;
  }
}


/* HOME SERVICES WITHOUT OUTER PANEL */
.home-services-section {
  margin-top: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.home-services-section .lead {
  max-width: 72ch;
}

.home-services-section .projects-grid {
  margin-top: 28px;
}

@media (max-width: 720px) {
  .home-services-section {
    margin-top: 26px !important;
  }

  .home-services-section .projects-grid {
    margin-top: 22px;
  }
}


/* HOME VISUAL BAND: REMOVE OUTER SHELL */
.visual-band-section {
  margin-top: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.visual-band-section .visual-band-copy {
  max-width: 72ch;
  margin-bottom: 26px !important;
  padding: 0 !important;
}

.visual-band-section .visual-band-placeholder {
  margin-top: 0 !important;
}

.visual-band-section + section,
.visual-band-section + .home-services-section {
  margin-top: 40px !important;
}

@media (max-width: 720px) {
  .visual-band-section {
    margin-top: 26px !important;
  }

  .visual-band-section .visual-band-copy {
    margin-bottom: 20px !important;
  }

  .visual-band-section + section,
  .visual-band-section + .home-services-section {
    margin-top: 28px !important;
  }
}


/* HOME VISUAL BAND: REMOVE OUTER SHELL */
.visual-band-section {
  margin-top: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.visual-band-section .visual-band-copy {
  max-width: 72ch;
  margin-bottom: 26px !important;
  padding: 0 !important;
}

.visual-band-section .visual-band-placeholder {
  margin-top: 0 !important;
}

.visual-band-section + section,
.visual-band-section + .home-services-section {
  margin-top: 40px !important;
}

@media (max-width: 720px) {
  .visual-band-section {
    margin-top: 26px !important;
  }

  .visual-band-section .visual-band-copy {
    margin-bottom: 20px !important;
  }

  .visual-band-section + section,
  .visual-band-section + .home-services-section {
    margin-top: 28px !important;
  }
}


/* PROJECTS: REMOVE OUTER SHELLS */
.projects-page {
  gap: 52px !important;
}

.projects-page > .project-case,
.projects-page > .projects-closure {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.project-case {
  gap: 40px !important;
  align-items: center !important;
}

.project-case__copy {
  padding: 0 6px 0 0;
}

.project-case__notes {
  margin-top: 10px !important;
}

.project-case__visual {
  min-width: 0;
}

.projects-closure {
  max-width: 74ch;
  padding-top: 6px !important;
}

@media (max-width: 1100px) {
  .projects-page {
    gap: 40px !important;
  }

  .project-case {
    gap: 26px !important;
  }

  .project-case__copy {
    padding: 0 !important;
  }
}

@media (max-width: 720px) {
  .projects-page {
    gap: 28px !important;
  }

  .project-case {
    gap: 20px !important;
  }

  .projects-closure {
    padding-top: 0 !important;
  }
}


/* HOME SECOND VISUAL FINAL CLEAN */
.hero-home + main {
  padding-top: 48px !important;
}

.visual-band-section {
  margin-top: 0 !important;
  margin-bottom: 48px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.visual-band-section .visual-band-copy {
  display: none !important;
}

.visual-band-section .visual-band-placeholder span,
.visual-band-section .visual-band-placeholder__inner span {
  display: none !important;
}

.visual-band-section .visual-band-placeholder,
.visual-band-section .visual-band-placeholder__inner {
  margin-top: 0 !important;
  min-height: 420px !important;
}

.home-services-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-services-section h2 {
  margin-top: 0 !important;
}

.visual-band-section + section,
.visual-band-section + .home-services-section {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .hero-home + main {
    padding-top: 28px !important;
  }

  .visual-band-section {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
  }

  .visual-band-section .visual-band-placeholder,
  .visual-band-section .visual-band-placeholder__inner {
    min-height: 240px !important;
  }
}


/* HOME SECOND VISUAL: KILL INNER SHELL */
.visual-band-section .visual-band-placeholder {
  padding: 0 !important;
  overflow: hidden !important;
}

.visual-band-section .visual-band-placeholder__inner {
  min-height: inherit !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.visual-band-section .visual-band-placeholder__inner::before,
.visual-band-section .visual-band-placeholder__inner::after {
  content: none !important;
  display: none !important;
}


/* HOME SECOND VISUAL: REMOVE INNER FRAME FOR REAL */
.visual-band-placeholder::before {
  content: none !important;
  display: none !important;
}

.visual-band-placeholder__inner {
  inset: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.visual-band-placeholder__inner span {
  display: none !important;
}


/* HOME SECOND VISUAL: TRUE EQUAL TOP/BOTTOM GAP */
.hero-home + main {
  padding-top: 40px !important;
}

.visual-band-section {
  margin-top: 0 !important;
  margin-bottom: 40px !important;
}

.visual-band-section + section,
.visual-band-section + .home-services-section {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .hero-home + main {
    padding-top: 24px !important;
  }

  .visual-band-section {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }
}


/* HOME SECOND VISUAL: TRUE EQUAL SPACING VIA SIBLINGS */
.visual-band-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.ticker-section + .visual-band-section {
  margin-top: 40px !important;
}

.visual-band-section + .home-services-section,
.visual-band-section + section {
  margin-top: 40px !important;
}

@media (max-width: 720px) {
  .ticker-section + .visual-band-section {
    margin-top: 24px !important;
  }

  .visual-band-section + .home-services-section,
  .visual-band-section + section {
    margin-top: 24px !important;
  }
}


/* HOME SECOND VISUAL: REAL EQUAL GAP FIX */
.ticker-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.ticker-section + .visual-band-section {
  margin-top: 40px !important;
}

.visual-band-section + .home-services-section,
.visual-band-section + section {
  margin-top: 40px !important;
}

@media (max-width: 720px) {
  .ticker-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .ticker-section + .visual-band-section {
    margin-top: 24px !important;
  }

  .visual-band-section + .home-services-section,
  .visual-band-section + section {
    margin-top: 24px !important;
  }
}


/* HOME SECOND VISUAL: SAME SPACE ABOVE AND BELOW FOR REAL */
.visual-band-section {
  margin: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  gap: 0 !important;
}

.visual-band-section .visual-band-placeholder,
.visual-band-section .visual-band-placeholder__inner {
  margin: 0 !important;
}

.visual-band-section + .home-services-section,
.visual-band-section + section {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .visual-band-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}


/* HOME SECOND VISUAL: CLEAN REPLACEMENT */
.home-second-visual {
  margin: 0 !important;
  padding: 40px 0 !important;
}

.ticker-section + .home-second-visual {
  margin-top: 0 !important;
}

.home-second-visual + .home-services-section,
.home-second-visual + section {
  margin-top: 0 !important;
}

.home-second-visual .visual-band-placeholder {
  margin: 0 !important;
  min-height: 420px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.home-second-visual .visual-band-placeholder::before {
  content: none !important;
  display: none !important;
}

.home-second-visual .visual-band-placeholder__inner {
  min-height: 420px !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-second-visual .visual-band-placeholder__inner::before,
.home-second-visual .visual-band-placeholder__inner::after,
.home-second-visual .visual-band-placeholder span,
.home-second-visual .visual-band-placeholder__inner span {
  content: none !important;
  display: none !important;
}

@media (max-width: 720px) {
  .home-second-visual {
    padding: 24px 0 !important;
  }

  .home-second-visual .visual-band-placeholder,
  .home-second-visual .visual-band-placeholder__inner {
    min-height: 240px !important;
  }
}


/* HOME PANORAMA CLEAN REBUILD */
.home-panorama {
  padding: 40px 0;
}

.home-panorama__frame {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.home-panorama + section,
.home-panorama + .home-services-section {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .home-panorama {
    padding: 24px 0;
  }

  .home-panorama__frame {
    min-height: 240px;
    border-radius: 22px;
  }
}



/* HOME PANORAMA CLEAN REBUILD */
.home-panorama {
  padding: 40px 0;
}

.home-panorama__frame {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.home-panorama + section,
.home-panorama + .home-services-section {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .home-panorama {
    padding: 24px 0;
  }

  .home-panorama__frame {
    min-height: 240px;
    border-radius: 22px;
  }
}
/* FIX: eliminar doble contenedor visual */
.hero-video-stage::before {
  display: none !important;
  content: none !important;
}
.hero-video-bleed {
  border: none !important;
  background: none !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.34) !important;
}

/* FIX DEFINITIVO: una sola caja visual */
.hero-video-stage {
  background: none !important;
  border: none !important;
  min-height: auto !important;
  padding: 0 !important;
}
.hero-video-stage::before {
  display: none !important;
}
.hero-video-bleed {
  margin: 80px auto !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* FIX: panorama como caja unica con margenes simetricos */
.home-panorama {
  padding: 0 !important;
  margin: 80px auto !important;
  max-width: 1080px !important;
}
.home-panorama__frame {
  min-height: 420px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    radial-gradient(circle at 70% 30%, rgba(124,92,255,0.12), transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(0,194,255,0.06), transparent 40%) !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3) !important;
}

/* AJUSTE: margenes simetricos panorama */
.home-panorama {
  margin: 50px auto 80px auto !important;
}

/* TEST: reveal editorial para el segundo visual */
.home-panorama__frame {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: saturate(0.94) brightness(0.92);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.home-panorama__frame::before {
  content: "";
  position: absolute;
  inset: -12% -30%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,0) 46%,
    rgba(255,255,255,0.16) 50%,
    rgba(124,92,255,0.10) 52%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-42%);
  opacity: 0;
  pointer-events: none;
}

.home-panorama__frame.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1) brightness(1);
}

.home-panorama__frame.is-visible::before {
  opacity: 1;
  animation: homePanoramaSweep 1200ms cubic-bezier(0.22, 1, 0.36, 1) 180ms 1 forwards;
}

@keyframes homePanoramaSweep {
  from { transform: translateX(-42%); }
  to { transform: translateX(42%); }
}

@media (prefers-reduced-motion: reduce) {
  .home-panorama__frame,
  .home-panorama__frame::before {
    transition: none;
    animation: none;
  }

  .home-panorama__frame {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* TEST: video provisional dentro del segundo visual */
.home-panorama__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.88) brightness(0.72) contrast(1.02);
}

.home-panorama__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,10,20,0.10), rgba(7,10,20,0.24)),
    radial-gradient(circle at 18% 22%, rgba(0,194,255,0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(124,92,255,0.12), transparent 30%);
  pointer-events: none;
}

/* TEST VISIBLE: reveal real del segundo visual */
.home-panorama__frame {
  opacity: 0 !important;
  transform: translateY(38px) scale(0.972) !important;
  filter: brightness(0.82) saturate(0.86) !important;
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1100ms ease !important;
}

.home-panorama__video {
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
}

.home-panorama__frame::before {
  content: "";
  position: absolute;
  inset: -8% -28%;
  background: linear-gradient(
    102deg,
    transparent 0%,
    transparent 43%,
    rgba(255,255,255,0.00) 47%,
    rgba(255,255,255,0.22) 50%,
    rgba(120,95,255,0.16) 52%,
    rgba(0,194,255,0.10) 54%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-55%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.home-panorama__frame.is-panorama-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: brightness(1) saturate(1) !important;
}

.home-panorama__frame.is-panorama-visible .home-panorama__video {
  transform: scale(1);
}

.home-panorama__frame.is-panorama-visible::before {
  opacity: 1;
  animation: panoramaSweepVisible 1400ms cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes panoramaSweepVisible {
  from { transform: translateX(-55%); }
  to   { transform: translateX(55%); }
}

@media (prefers-reduced-motion: reduce) {
  .home-panorama__frame,
  .home-panorama__video,
  .home-panorama__frame::before {
    transition: none !important;
    animation: none !important;
  }

  .home-panorama__frame {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .home-panorama__video {
    transform: none !important;
  }
}

/* TEST: doble panel de video en segundo visual */
.home-panorama__dual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.home-panorama__panel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10,14,24,0.92), rgba(7,10,18,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.home-panorama__panel--left {
  transform: perspective(1400px) rotateY(2.2deg);
}

.home-panorama__panel--right {
  transform: perspective(1400px) rotateY(-2.2deg);
}

.home-panorama__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.10), rgba(6,10,18,0.26)),
    radial-gradient(circle at 20% 18%, rgba(0,194,255,0.08), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(124,92,255,0.12), transparent 30%);
  pointer-events: none;
  z-index: 2;
}

.home-panorama__panel .home-panorama__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(0.78) saturate(0.9) contrast(1.03);
}

@media (max-width: 900px) {
  .home-panorama__dual {
    grid-template-columns: 1fr;
  }

  .home-panorama__panel--left,
  .home-panorama__panel--right {
    transform: none;
  }

  .home-panorama__panel {
    min-height: 240px;
  }
}

/* TEST: segundo visual como diptico limpio, sin caja exterior */
.home-panorama {
  padding: 0 !important;
  margin: 52px auto 70px auto !important;
  max-width: 1080px !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-panorama__frame {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.home-panorama__dual {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  align-items: stretch !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-panorama__panel {
  position: relative !important;
  min-height: 268px !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: rgba(9, 13, 24, 0.92) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22) !important;
  transform: none !important;
}

.home-panorama__panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.08), rgba(6,10,18,0.20)),
    radial-gradient(circle at 22% 20%, rgba(0,194,255,0.05), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(124,92,255,0.08), transparent 28%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.home-panorama__panel .home-panorama__video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.9 !important;
  filter: brightness(0.8) saturate(0.9) contrast(1.02) !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .home-panorama {
    margin: 40px auto 56px auto !important;
  }

  .home-panorama__dual {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .home-panorama__panel {
    min-height: 220px !important;
  }
}

/* AJUSTE: mÃ¡s aire entre el dÃ­ptico y "QuÃ© hacemos" */
.home-panorama {
  margin-bottom: 112px !important;
}

/* TEST: fondo un poco menos oscuro */
body {
  background:
    radial-gradient(circle at 18% 14%, rgba(72, 96, 190, 0.18), transparent 30%),
    radial-gradient(circle at 78% 10%, rgba(110, 92, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #081120 0%, #07101d 38%, #060d18 100%) !important;
}

/* TEST: fondo un poco mÃ¡s claro todavÃ­a */
body {
  background:
    radial-gradient(circle at 18% 14%, rgba(86, 112, 210, 0.22), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(128, 108, 255, 0.20), transparent 30%),
    linear-gradient(180deg, #0a1527 0%, #091321 38%, #08111d 100%) !important;
}

/* TEST: fondo mÃ¡s equilibrado tambiÃ©n en la parte baja */
body {
  background:
    radial-gradient(circle at 18% 14%, rgba(86, 112, 210, 0.22), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(128, 108, 255, 0.20), transparent 30%),
    radial-gradient(circle at 52% 78%, rgba(70, 102, 190, 0.16), transparent 38%),
    linear-gradient(180deg, #0a1527 0%, #091321 34%, #091320 70%, #08121d 100%) !important;
}

/* TEST: luz lateral sutil detrÃ¡s de las tarjetas de "QuÃ© hacemos" */
.home-services-section .project-card.project-card--flip {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    -34px 0 72px rgba(92, 116, 255, 0.08),
    34px 0 72px rgba(126, 92, 255, 0.08) !important;
}

/* PROYECTOS STEP 1: hero mÃ¡s limpio + nav activa mÃ¡s fina */
.hero-projects .topbar {
  margin-bottom: 20px !important;
  border-color: rgba(255,255,255,0.07) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18) !important;
}

.hero-editorial--projects {
  gap: 28px !important;
  align-items: end !important;
  min-height: 590px !important;
}

.hero-copy--projects {
  padding: 28px 0 56px 10px !important;
}

.project-hero-ghost-stage {
  min-height: 560px !important;
}

.project-hero-ghost-stage::before {
  right: 8% !important;
  bottom: 12% !important;
  width: 76% !important;
  height: 66% !important;
  filter: blur(22px) !important;
  opacity: 0.82 !important;
}

.project-hero-ghost-frame {
  right: 0 !important;
  bottom: 0 !important;
  width: min(100%, 1000px) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.12) 0%, rgba(7, 11, 24, 0.03) 24%, rgba(7, 11, 24, 0.02) 64%, rgba(7, 11, 24, 0.06) 100%),
    radial-gradient(circle at 68% 36%, rgba(124, 92, 255, 0.10), transparent 24%),
    radial-gradient(circle at 30% 68%, rgba(0, 194, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012)) !important;
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.hero-home.hero-projects + main {
  padding-top: 64px !important;
}

/* Nav: pÃ¡gina activa mÃ¡s sutil, hover limpio */
.topbar-links a:hover:not([aria-current="page"])::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.topbar-links a[aria-current="page"] {
  color: rgba(248, 250, 255, 0.98) !important;
  letter-spacing: 0.12em !important;
}

.topbar-links a[aria-current="page"]::after {
  opacity: 0.54 !important;
  transform: scaleX(0.78) !important;
}

.topbar-links a[aria-current="page"]:hover {
  transform: none !important;
}

/* PROYECTOS STEP 2: sin subrayado fijo + mÃ¡s aire bajo el hero */
.topbar-links a[aria-current="page"]::after,
.topbar-links a[aria-current="page"]:hover::after {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.topbar-links a[aria-current="page"] {
  color: rgba(248, 250, 255, 0.98) !important;
}

.hero-home.hero-projects + main {
  padding-top: 98px !important;
}

.projects-page > .project-case:first-of-type {
  margin-top: 10px !important;
}

.project-case--feature {
  padding-top: 8px !important;
}

/* PROYECTOS STEP 3: mÃ¡s aire entre tÃ­tulo y visual */
.hero-editorial--projects {
  gap: 56px !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
}

.hero-copy--projects h1 {
  max-width: 8.4ch !important;
  font-size: clamp(4.8rem, 8vw, 6.9rem) !important;
  line-height: 0.93 !important;
}

.project-hero-ghost-stage {
  padding-left: 18px !important;
}

.project-hero-ghost-frame {
  width: min(94%, 940px) !important;
}

/* PROYECTOS STEP 4: subir y centrar mejor el visual del hero */
.project-hero-ghost-stage {
  position: relative !important;
  min-height: 500px !important;
}

.project-hero-ghost-frame {
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

/* PROYECTOS: mÃ¡s aire general */
.projects-page {
  gap: 72px !important;
}

.project-case {
  gap: 42px !important;
  padding: 18px 28px 34px !important;
}

.project-case__copy {
  gap: 20px !important;
}

.project-case__notes {
  margin-top: 10px !important;
}

.project-case__notes p {
  line-height: 1.82 !important;
}

/* PROYECTOS: hero solo texto + reveal editorial */
.hero-editorial--projects {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  min-height: auto !important;
}

.project-hero-ghost-stage {
  display: none !important;
}

.hero-copy--projects {
  max-width: 980px !important;
  padding: 34px 0 34px 10px !important;
}

.hero-copy--projects h1 {
  max-width: none !important;
  font-size: clamp(4.6rem, 8.2vw, 7.2rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.04em !important;
}

.project-hero-line {
  display: block;
  overflow: hidden;
}

.project-hero-line__inner {
  display: block;
  opacity: 0;
  transform: translateY(118%);
  filter: blur(8px);
}

.hero-copy--projects h1.is-projects-visible .project-hero-line__inner {
  animation: projectsLineReveal 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--line-delay, 0ms);
}

@keyframes projectsLineReveal {
  0% {
    opacity: 0;
    transform: translateY(118%);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-hero-line__inner,
  .hero-copy--projects h1.is-projects-visible .project-hero-line__inner {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* PROYECTOS HERO STEP 2: menos tamaÃ±o y reveal mÃ¡s lento */
.hero-editorial--projects {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  min-height: auto !important;
}

.project-hero-ghost-stage {
  display: none !important;
}

.hero-copy--projects {
  max-width: 980px !important;
  padding: 34px 0 40px 10px !important;
}

.hero-copy--projects h1 {
  max-width: none !important;
  font-size: clamp(4rem, 7.2vw, 6.2rem) !important;
  line-height: 0.93 !important;
  letter-spacing: -0.045em !important;
}

.hero-copy--projects h1.is-projects-visible .project-hero-line__inner {
  animation-duration: 1180ms !important;
}

/* PROYECTOS HERO: el bloque de texto inferior aparece con fundido */
.hero-copy--projects > p {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1000ms ease;
}

.hero-copy--projects.is-copy-visible > p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy--projects > p,
  .hero-copy--projects.is-copy-visible > p {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* BUENBOCADO: carrusel de 3 imÃ¡genes */
.media-stage__screen--carousel {
  background: linear-gradient(180deg, rgba(7,11,20,0.20), rgba(7,11,20,0.34)) !important;
}

.bb-case-carousel {
  position: relative;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
}

.bb-case-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,20,0.04), rgba(8,12,20,0.20)),
    radial-gradient(circle at 82% 14%, rgba(0, 214, 124, 0.10), transparent 24%);
  pointer-events: none;
  z-index: 2;
}

.bb-case-carousel__slides {
  position: relative;
  min-height: 420px;
  height: 100%;
}

.bb-case-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 420ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.bb-case-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.bb-case-carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.01);
}

.bb-case-carousel__overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb-case-carousel__overlay--top {
  top: 18px;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.bb-case-carousel__overlay--bottom {
  bottom: 18px;
  gap: 14px;
}

.bb-case-carousel__caption {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.58);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(248,250,255,0.92);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.bb-case-carousel__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.bb-case-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bb-case-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.bb-case-carousel__dot.is-active {
  background: rgba(255,255,255,0.94);
  transform: scale(1.08);
}

.bb-case-carousel__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-case-carousel__button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(8, 12, 20, 0.62);
  color: rgba(248,250,255,0.94);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.bb-case-carousel__button:hover {
  transform: translateY(-1px);
  background: rgba(12, 16, 28, 0.76);
  border-color: rgba(255,255,255,0.16);
}

@media (max-width: 900px) {
  .bb-case-carousel,
  .bb-case-carousel__slides,
  .bb-case-carousel__slide img {
    min-height: 300px;
  }

  .bb-case-carousel__overlay {
    left: 14px;
    right: 14px;
  }

  .bb-case-carousel__overlay--bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-case-carousel__controls {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

/* BUENBOCADO: dejar solo imagen + flechas */
.bb-case-carousel__overlay--top,
.bb-case-carousel__caption,
.bb-case-carousel__dots {
  display: none !important;
}

.bb-case-carousel__overlay--bottom {
  left: auto !important;
  right: 18px !important;
  bottom: 18px !important;
  width: auto !important;
  justify-content: flex-end !important;
  gap: 0 !important;
}

.bb-case-carousel__controls {
  margin-left: 0 !important;
  gap: 0 !important;
}

.bb-case-carousel__nav {
  display: flex !important;
  gap: 10px !important;
}

.bb-case-carousel__button {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(8, 12, 20, 0.34) !important;
  color: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(10px) !important;
}

.bb-case-carousel__button:hover {
  background: rgba(8, 12, 20, 0.52) !important;
  border-color: rgba(255,255,255,0.20) !important;
}

/* GALERÍAS FLOTANTES: BuenBocado + WET APP */
.media-stage--bb,
.media-stage--wet,
.media-stage--bb .media-stage__screen,
.media-stage--wet .media-stage__screen,
.media-stage__screen--carousel {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
}

.media-stage__chrome {
  display: none !important;
}

.bb-case-carousel {
  position: relative;
  min-height: 420px;
  height: 100%;
  overflow: visible !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.bb-case-carousel::before {
  display: none !important;
}

.bb-case-carousel__slides {
  position: relative;
  min-height: 420px;
  height: 100%;
}

.bb-case-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(6px) scale(0.992);
  transition:
    opacity 420ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.bb-case-carousel__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.bb-case-carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 28px !important;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.26),
    0 0 0 1px rgba(255,255,255,0.05);
}

.bb-case-carousel__overlay--top,
.bb-case-carousel__caption,
.bb-case-carousel__dots {
  display: none !important;
}

.bb-case-carousel__overlay--bottom {
  left: auto !important;
  right: 18px !important;
  bottom: 18px !important;
  width: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  z-index: 3 !important;
}

.bb-case-carousel__controls {
  display: none !important;
}

.bb-case-carousel__nav {
  display: flex !important;
  gap: 10px !important;
}

.bb-case-carousel__button {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(8, 12, 20, 0.30) !important;
  color: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16) !important;
}

.bb-case-carousel__button:hover {
  background: rgba(8, 12, 20, 0.48) !important;
  border-color: rgba(255,255,255,0.20) !important;
}

@media (max-width: 900px) {
  .bb-case-carousel,
  .bb-case-carousel__slides,
  .bb-case-carousel__slide img {
    min-height: 300px;
  }
}
/* BuenBocado: usar las mismas flechas visibles que WET APP */
.project-case--feature .bb-case-carousel__overlay--bottom {
  left: auto !important;
  right: 18px !important;
  bottom: 18px !important;
  width: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  z-index: 3 !important;
}

.project-case--feature .bb-case-carousel__caption,
.project-case--feature .bb-case-carousel__dots {
  display: none !important;
}

.project-case--feature .bb-case-carousel__controls {
  display: flex !important;
  margin-left: 0 !important;
  gap: 0 !important;
}

.project-case--feature .bb-case-carousel__nav {
  display: flex !important;
  gap: 10px !important;
}

.project-case--feature .bb-case-carousel__button {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(8, 12, 20, 0.30) !important;
  color: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16) !important;
}

.project-case--feature .bb-case-carousel__button:hover {
  background: rgba(8, 12, 20, 0.48) !important;
  border-color: rgba(255,255,255,0.20) !important;
}


/* PROYECTOS: OpoIA sin contenedor exterior */
.media-stage--opoia {
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.media-stage--opoia::before,
.media-stage--opoia::after {
  display: none !important;
}


/* MOBILE HOME RESET V4 */
.topbar-toggle,
.topbar-mobile-panel {
  display: none;
}

@media (max-width: 820px) {
  .topbar--home {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto auto !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    min-height: 0 !important;
  }

  .topbar--home .brand {
    min-width: 0 !important;
  }

  .topbar--home .topbar-links,
  .topbar--home .topbar-cta {
    display: none !important;
  }

  .topbar--home .topbar-lang {
    margin: 0 !important;
    justify-self: end !important;
    font-size: 0.72rem !important;
    gap: 0.3rem !important;
  }

  .topbar-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 46px;
    height: 46px;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    appearance: none;
    cursor: pointer;
  }

  .topbar-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(245,247,255,0.95);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .topbar--home.is-open .topbar-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .topbar--home.is-open .topbar-toggle span:nth-child(2) {
    opacity: 0;
  }
  .topbar--home.is-open .topbar-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .topbar-mobile-panel {
    display: none;
  }

  .topbar--home.is-open .topbar-mobile-panel {
    display: grid !important;
    grid-column: 1 / -1;
    gap: 10px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .topbar-mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(245,247,255,0.94);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .topbar-mobile-panel .topbar-mobile-cta {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
  }

  .hero-editorial {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: 0 !important;
    align-items: start !important;
  }

  .hero-copy--editorial {
    max-width: none !important;
    padding: 12px 0 0 !important;
  }

  .hero-copy--editorial h1 {
    max-width: 6.8ch !important;
    font-size: clamp(2.7rem, 15vw, 4.05rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-copy--editorial .hero-text {
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .hero-copy--editorial .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }

  .hero-copy--editorial .hero-actions .button {
    width: 100% !important;
  }

  .hero-video-stage {
    width: 100% !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    justify-content: stretch !important;
  }

  .hero-video-bleed {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 24px !important;
    aspect-ratio: 16 / 10 !important;
  }

  .home-panorama {
    display: none !important;
  }
}

@media (max-width: 640px) {
  #app {
    width: min(calc(100% - 16px), var(--max-width)) !important;
    padding-top: 12px !important;
  }

  .brand.brand--with-icon {
    gap: 0.5rem !important;
  }

  .brand.brand--with-icon img {
    width: 28px !important;
    height: 28px !important;
  }

  .brand.brand--with-icon span {
    font-size: 0.94rem !important;
  }

  .hero-copy--editorial .eyebrow {
    font-size: 0.84rem !important;
    letter-spacing: 0.12em !important;
  }
}

/* MOBILE HOME BUTTONS REFINEMENT V2 */
@media (max-width: 820px) {
  .hero-copy--editorial .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px 14px !important;
    margin-top: 16px !important;
  }

  .hero-copy--editorial .hero-actions .button {
    width: auto !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    font-size: 0.98rem !important;
  }

  .hero-copy--editorial .hero-actions .button-primary {
    box-shadow: none !important;
  }

  .hero-copy--editorial .hero-actions .button-secondary {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(214, 223, 242, 0.82) !important;
    font-size: 0.94rem !important;
    font-weight: 600 !important;
  }

  .hero-copy--editorial .hero-actions .button-secondary:hover {
    transform: none !important;
    color: rgba(255,255,255,0.98) !important;
  }
}

@media (max-width: 640px) {
  .hero-copy--editorial .hero-actions {
    gap: 6px 14px !important;
    margin-top: 14px !important;
  }

  .hero-copy--editorial .hero-actions .button-primary {
    min-height: 42px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
  }

  .hero-copy--editorial .hero-actions .button-secondary {
    font-size: 0.92rem !important;
  }
}
